Skip to content

Workflow file for this run

name: TPP-MLIR Base Tests
# For now, we do it manually, but this will need to be on commit
on:
workflow_dispatch:
push:
branches: [ "ghactions" ]
pull_request:
branches: [ "ghactions" ]
jobs:
Check_LLVM:
runs-on: self-hosted
steps:
- name: Check LLVM
run: "BUILD=1 scripts/buildkite/check_llvm.sh"
TPP-MLIR-gcc-rel:
runs-on: self-hosted
needs: Check_LLVM
steps:
- 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:
- 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:
- 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:
- 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'"