-
Notifications
You must be signed in to change notification settings - Fork 31
40 lines (35 loc) · 1.19 KB
/
tpp-mlir.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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
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 -- \
'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 -- \
'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 -- \
'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 -- \
'KIND=Debug COMPILER=clang LINKER=lld SANITIZERS=1 CHECK=1 ONEDNN=1 \
scripts/buildkite/build_tpp.sh'"