From c1d95899ca6006e07d074b20d13cdeebc5753532 Mon Sep 17 00:00:00 2001 From: pravirkr Date: Wed, 29 May 2024 03:58:29 +0300 Subject: [PATCH] github action breaking for g++-13 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 197ae22..a01a534 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,9 +24,9 @@ jobs: run: | echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" - name: Install dependencies - run: > - sudo apt update - sudo apt install -y cmake g++-13 clang-15 lcov + shell: bash + run: | + sudo apt install -y cmake ${{ matrix.compiler.cpp }} lcov - name: Configure CMake shell: bash id: configure