Skip to content

Commit

Permalink
steps
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Jan 31, 2024
1 parent 45f2211 commit c0ff6b9
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/tpp-mlir.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: TPP-MLIR Base Tests

# For now, we do it manually, but this will need to be on commit
on:
workflow_dispatch:
Expand All @@ -9,32 +11,37 @@ on:
jobs:
Check_LLVM:
runs-on: self-hosted
run: "BUILD=1 scripts/buildkite/check_llvm.sh"
steps:
run: "BUILD=1 scripts/buildkite/check_llvm.sh"

TPP-MLIR-gcc-rel:
runs-on: self-hosted
needs: Check_LLVM
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
steps:
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=gcc CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"

TPP-MLIR-gcc-deb:
runs-on: self-hosted
needs: Check_LLVM
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
steps:
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Debug COMPILER=gcc CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"

TPP-MLIR-clang-rel:
runs-on: self-hosted
needs: Check_LLVM
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
steps:
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=clang LINKER=lld CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"

TPP-MLIR-clang-deb:
runs-on: self-hosted
needs: Check_LLVM
command: "${SRUN} --partition=spr-all --time=0:30:00 -- \
steps:
command: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Debug COMPILER=clang LINKER=lld SANITIZERS=1 CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"

0 comments on commit c0ff6b9

Please sign in to comment.