From 91678db8fb8af588e550e93a45942deb18ec0086 Mon Sep 17 00:00:00 2001 From: Vincent Payet Date: Fri, 27 Sep 2024 17:50:08 +0200 Subject: [PATCH] use devtoolset 11 for centos --- .github/workflows/centos7.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/centos7.yml b/.github/workflows/centos7.yml index 22e9bb0c74..e2e360db49 100644 --- a/.github/workflows/centos7.yml +++ b/.github/workflows/centos7.yml @@ -43,7 +43,7 @@ jobs: - name: Install gcc 10 run: | yum install -y centos-release-scl - yum install -y devtoolset-10-gcc* + yum install -y devtoolset-11-gcc* - uses: ./.github/workflows/install-cmake-328 @@ -80,7 +80,7 @@ jobs: - name: Configure run: | - source /opt/rh/devtoolset-10/enable + source /opt/rh/devtoolset-11/enable cmake -B _build -S src \ -DCMAKE_C_COMPILER_LAUNCHER=ccache \ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ @@ -94,7 +94,7 @@ jobs: - name: Build run: | - source /opt/rh/devtoolset-10/enable + source /opt/rh/devtoolset-11/enable source /opt/rh/rh-git227/enable cmake --build _build --config Release -j$(nproc) ccache -s