diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index 47fe31b1..955014db 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -53,6 +53,12 @@ jobs: compiler: { type: GCC, version: 10, cc: "gcc-10", cxx: "g++-10" }, lib: "libstdc++11" } + - { + name: "Ubuntu GCC 11.1.0", + os: ubuntu-20.04, + compiler: { type: GCC, version: 11, cc: "gcc-11", cxx: "g++-11" }, + lib: "libstdc++11" + } - { name: "Ubuntu Clang 12.0.0 + libstdc++11", os: ubuntu-20.04, @@ -98,6 +104,11 @@ jobs: ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- ${{ runner.os }}- + - name: Install gcc-11 + if: matrix.config.compiler.type == 'GCC' && matrix.config.compiler.version == '11' + shell: bash + run: | + sudo apt install -y g++-${{ matrix.config.compiler.version }} - name: Install Clang if: matrix.config.compiler.type == 'CLANG' shell: bash