Skip to content

Commit 462d4ef

Browse files
authored
updates ci-compile.yml to include LLVM backend
1 parent 19f3737 commit 462d4ef

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci-compile.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,14 @@ jobs:
4040
cmake --version
4141
4242
- name: Configure
43-
run: cmake --preset Debug -B build -DCMAKE_CXX_STANDARD=${{ matrix.cpp_std }}
43+
run: |
44+
echo "WITH_LLVM=1" >> $GITHUB_ENV
45+
cmake --preset Debug -B build -DCMAKE_CXX_STANDARD=${{ matrix.cpp_std }}
4446
4547
- name: Build
46-
run: cmake --build build -j
48+
run: |
49+
echo "WITH_LLVM=1" >> $GITHUB_ENV
50+
cmake --build build -j
4751
4852
- name: Run smoke test
4953
run: ./build/riscv-sim -h

0 commit comments

Comments
 (0)