Minimal github action script working on the cluster #21
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
name: Basic TPP-MLIR Builder | |
# For now, we do it manually, but this will need to be on commit | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "ghactions" ] | |
pull_request: | |
branches: [ "ghactions" ] | |
env: | |
# clang, gcc | |
CC: clang | |
CXX: clang++ | |
# ld, gold, lld | |
LD: lld | |
# Release, Debug, RelWithDebInfo | |
BUILD: RelWithDebInfo | |
# "Address;Memory;Leak;Undefined" | |
SAN: "" | |
# ON, OFF | |
OPENMP: OFF | |
ONEDNN: OFF | |
jobs: | |
build_tpp_mlir: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: LLVM commit | |
run: | | |
echo "LLVM_DIR=${{ secrets.LLVM_ROOT }}/$(cat build_tools/llvm_version.txt)" >> $GITHUB_ENV | |
- name: Install Python Requirements | |
run: | | |
pip install --upgrade --user lit | |
echo "LLVM_LIT=$HOME/.local/bin/lit" >> $GITHUB_ENV | |
- name: CMake | |
run: | | |
mkdir -p build | |
cmake -G Ninja -B build . \ | |
-DCMAKE_C_COMPILER=${CC} -DCMAKE_CXX_COMPILER=${CXX} \ | |
-DCMAKE_BUILD_TYPE=${BUILD} \ | |
-DMLIR_DIR=${{ env.LLVM_DIR }}/lib/cmake/mlir \ | |
-DLLVM_EXTERNAL_LIT=${{ env.LLVM_LIT }} \ | |
-DLLVM_USE_LINKER=${LD} \ | |
-DUSE_SANITIZER=${SAN} \ | |
-DUSE_OpenMP=${OPENMP} \ | |
-DUSE_OneDNN=${ONEDNN} | |
- name: Build | |
run: ninja -C build all | |
- name: Test | |
run: ninja -C build check-all |