From 1501f02c04026a237ee3f548cd0189b2cf19dd9d Mon Sep 17 00:00:00 2001 From: Lukas Korencik Date: Thu, 14 Apr 2022 19:44:35 +0200 Subject: [PATCH] CI: Install g++-8 on ubuntu to get access to std::filesystem. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30e04786..b63aef36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: |