Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Jan 31, 2024
1 parent c0ff6b9 commit dcc4d12
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions .github/workflows/tpp-mlir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,36 +12,41 @@ jobs:
Check_LLVM:
runs-on: self-hosted
steps:
run: "BUILD=1 scripts/buildkite/check_llvm.sh"
- name: Check LLVM
run: "BUILD=1 scripts/buildkite/check_llvm.sh"

TPP-MLIR-gcc-rel:
runs-on: self-hosted
needs: Check_LLVM
steps:
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=gcc CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"
- name: GCC Release
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
steps:
run: "${SRUN} --partition=spr-all --time=0:30:00 -- \
'KIND=Debug COMPILER=gcc CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"
- name: GCC Debug
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
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'"
- name: Clang Release
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
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'"
- name: Clang Debug Sanitizers
run: "${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 dcc4d12

Please sign in to comment.