PR CI (in-tree mlir-xten) #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# (c) Copyright 2021 Xilinx, Inc. All Rights reserved. | |
# (c) Copyright 2022 - 2024 Advanced Micro Devices, Inc. All Rights reserved. | |
name: Build x86 LLVM-Nightly Image | |
on: | |
pull_request: | |
workflow_dispatch: | |
# Run every week (on Sunday). | |
schedule: | |
- cron: '0 0 * * SUN' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
buildandtest: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup ccache | |
uses: hendrikmuhs/ccache-action@v1 | |
with: | |
key: ${{ matrix.os }} | |
variant: sccache | |
- name: Install Ninja | |
uses: llvm/actions/install-ninja@main | |
- name: Build and Test | |
shell: bash | |
id: build-llvm | |
run: | | |
cmake -G Ninja \ | |
-Bbuild \ | |
llvm-project/llvm \ | |
-DCMAKE_BUILD_TYPE=Relase \ | |
-DCMAKE_C_COMPILER=clang \ | |
-DCMAKE_CXX_COMPILER=clang++ \ | |
-DLLVM_USE_LINKER=lld \ | |
-DLLVM_ENABLE_PROJECTS=mlir \ | |
-DLLVM_TARGETS_TO_BUILD=host \ | |
-DLLVM_BUILD_TOOLS=OFF \ | |
-DLLVM_BUILD_UTILS=OFF \ | |
-DLLVM_BUILD_RUNTIMES=OFF \ | |
-DCMAKE_C_COMPILER_LAUNCHER=sccache \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache \ | |
-DLLVM_EXTERNAL_PROJECTS=mlir-xten \ | |
-DMLIR_XTEN_ENABLE_TORCH=OFF \ | |
-DLLVM_EXTERNAL_MLIR_XTEN_SOURCE_DIR=. | |
ninja -C build check-xten-all |