From dcc4d12e4639298dc2463e78bbec15032388ea25 Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Wed, 31 Jan 2024 12:55:25 +0000 Subject: [PATCH] fix --- .github/workflows/tpp-mlir.yml | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/.github/workflows/tpp-mlir.yml b/.github/workflows/tpp-mlir.yml index aa0e76d93..cc50b4849 100644 --- a/.github/workflows/tpp-mlir.yml +++ b/.github/workflows/tpp-mlir.yml @@ -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'"