Skip to content

Commit

Permalink
checkout everywhere tpp-mlir
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Feb 2, 2024
1 parent 53fe670 commit 0cf736b
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .github/workflows/tpp-mlir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,44 +12,48 @@ env:

jobs:
Check_LLVM:
runs-on: self-hosted
runs-on: pcl-tiergarten
steps:
- uses: actions/checkout@v4
- name: Check LLVM
run: "BUILD=1 scripts/buildkite/check_llvm.sh"

TPP-MLIR-gcc-rel:
runs-on: self-hosted
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: GCC Release
run: "${{ secrets.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=gcc CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"
${{ github.workspace }}/scripts/buildkite/build_tpp.sh'"

TPP-MLIR-gcc-deb:
runs-on: self-hosted
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: GCC Debug
run: "${{ secrets.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=Debug COMPILER=gcc CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"
${{ github.workspace }}/scripts/buildkite/build_tpp.sh'"

TPP-MLIR-clang-rel:
runs-on: self-hosted
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: Clang Release
run: "${{ secrets.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=Release COMPILER=clang LINKER=lld CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"
${{ github.workspace }}/scripts/buildkite/build_tpp.sh'"

TPP-MLIR-clang-deb:
runs-on: self-hosted
runs-on: pcl-tiergarten
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
- name: Clang Debug Sanitizers
run: "${{ secrets.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'"
${{ github.workspace }}/scripts/buildkite/build_tpp.sh'"

0 comments on commit 0cf736b

Please sign in to comment.