File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [push, pull_request]
55jobs :
66 build :
77 name : ${{matrix.compiler.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
8- runs-on : ubuntu-latest
8+ runs-on : ubuntu-22.04
99 strategy :
1010 fail-fast : false
1111 matrix :
@@ -27,10 +27,10 @@ jobs:
2727 steps :
2828 - uses : actions/checkout@v4
2929
30- # - name: Prepare environment
31- # run: |
32- # sudo apt-get update
33- # sudo apt-get install -y ninja-build ${{matrix.compiler.other_pkgs}}
30+ - name : Prepare environment
31+ run : |
32+ sudo apt-get update
33+ sudo apt-get install -y ninja-build ${{matrix.compiler.other_pkgs}}
3434
3535 # - name: Configure CMake
3636 # env:
@@ -47,10 +47,11 @@ jobs:
4747 # -G Ninja
4848
4949 - name : Configure CMake
50+ env :
51+ CXX : ${{matrix.compiler.cxx}}
5052 run : |
5153 cmake -B build \
5254 -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
53- -DCMAKE_CXX_COMPILER=clang++ \
5455 -DRAPIDFUZZ_BUILD_TESTING=1 \
5556 -DRAPIDFUZZ_ENABLE_LINTERS=1 \
5657 -DRAPIDFUZZ_BUILD_FUZZERS=1
You can’t perform that action at this time.
0 commit comments