Skip to content

Commit

Permalink
[CI] LLVM build
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Feb 12, 2024
1 parent 9d5f720 commit 8fa54d4
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/tpp-llvm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: TPP-MLIR LLVM Build

on:
workflow_dispatch:

env:
NPROCS_LIMIT_LINK: 8

jobs:
TPP-MLIR-LLVM-Base:
runs-on: pcl-tiergarten
steps:
- uses: actions/checkout@v4
- name: LLVM Base
run: |-
command: "scripts/buildkite/check_llvm.sh || \
"${{ secrets.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=RelWithDebInfo COMPILER=clang \
${{ github.workspace }}/scripts/buildkite/build_llvm.sh'"
TPP-MLIR-LLVM-CUDA:
runs-on: pcl-tiergarten
steps:
- uses: actions/checkout@v4
- name: LLVM CUDA
run: |-
command: "scripts/buildkite/check_llvm.sh || \
"${{ secrets.SRUN }} --partition=a100,v100 --time=0:30:00 -- \
'KIND=RelWithDebInfo COMPILER=clang GPU=cuda \
${{ github.workspace }}/scripts/buildkite/build_llvm.sh'"
TPP-MLIR-LLVM-Vulkan:
runs-on: pcl-tiergarten
steps:
- uses: actions/checkout@v4
- name: LLVM Vulkan
run: |-
command: "scripts/buildkite/check_llvm.sh || \
"${{ secrets.SRUN }} --partition=spr-all --time=0:30:00 -- \
'KIND=RelWithDebInfo COMPILER=clang GPU=vulkan \
${{ github.workspace }}/scripts/buildkite/build_llvm.sh'"

0 comments on commit 8fa54d4

Please sign in to comment.