CI: Install g++-8 on ubuntu to get access to std::filesystem.

This commit is contained in:
Lukas Korencik
2022-04-14 19:44:35 +02:00
parent df7e433600
commit 1501f02c04
+3 -1
View File
@@ -40,7 +40,9 @@ jobs:
- name: Build with build script
shell: bash
run: ./scripts/build.sh --llvm-version ${{ matrix.llvm }}
run: |
sudo apt-get update && sudo apt-get install g++-8
./scripts/build.sh --llvm-version ${{ matrix.llvm }}
- name: Build with build-presets script
shell: bash
run: |