From 1f7b83a232cdba4fc9778bc8271f5480038ccbb7 Mon Sep 17 00:00:00 2001 From: MichaelBrunner Date: Fri, 16 Aug 2024 16:53:07 +0200 Subject: [PATCH] =?UTF-8?q?FIX:=20error:=20error:=20=E2=80=98format?= =?UTF-8?q?=E2=80=99=20is=20not=20a=20member=20of=20=E2=80=98std=E2=80=99?= =?UTF-8?q?=20use=20gcc=20latest=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-matrix.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-matrix.yml b/.github/workflows/build-matrix.yml index e54785f..fc2e216 100644 --- a/.github/workflows/build-matrix.yml +++ b/.github/workflows/build-matrix.yml @@ -22,6 +22,12 @@ jobs: - name: Checkout code uses: actions/checkout@v4.1.4 + - name: Install GCC latest + if: matrix.os == 'ubuntu-latest' + run: | + sudo apt-get update + sudo apt-get install -y gcc g++ + - name: vcpkg installation shell: bash run: |