Skip to content

Commit 26a9861

Browse files
fix
Created using spr 1.3.6
1 parent 4053d85 commit 26a9861

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/spirv-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
runs-on: ubuntu-24.04
2424
container:
2525
image: ghcr.io/llvm/ci-ubuntu-24.04:latest
26-
volumes:
27-
- /mnt:/mnt
2826
steps:
2927
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3028
- name: Setup ccache
@@ -35,11 +33,13 @@ jobs:
3533
variant: sccache
3634
- name: Build and Test
3735
run: |
38-
mkdir /mnt/build
36+
mkdir build
3937
cmake -GNinja \
38+
-S llvm \
39+
-B build \
4040
-DLLVM_ENABLE_ASSERTIONS=ON \
4141
-DCMAKE_C_COMPILER_LAUNCHER=sccache \
4242
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache \
4343
-DLLVM_TARGETS_TO_BUILD="SPIRV" \
4444
-DLLVM_INCLUDE_SPIRV_TOOLS_TESTS=ON
45-
ninja -C /mnt/build check-llvm-codegen-spirv
45+
ninja -C build check-llvm-codegen-spirv

0 commit comments

Comments
 (0)