We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19f3737 commit 462d4efCopy full SHA for 462d4ef
1 file changed
.github/workflows/ci-compile.yml
@@ -40,10 +40,14 @@ jobs:
40
cmake --version
41
42
- name: Configure
43
- run: cmake --preset Debug -B build -DCMAKE_CXX_STANDARD=${{ matrix.cpp_std }}
+ run: |
44
+ echo "WITH_LLVM=1" >> $GITHUB_ENV
45
+ cmake --preset Debug -B build -DCMAKE_CXX_STANDARD=${{ matrix.cpp_std }}
46
47
- name: Build
- run: cmake --build build -j
48
49
50
+ cmake --build build -j
51
52
- name: Run smoke test
53
run: ./build/riscv-sim -h
0 commit comments