1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

CI: Build linux-gcc-test preset with gcc 13

This helps detecting issues with newer gcc versions, like #2866

Fixes #3407
This commit is contained in:
Alexander Wilms 2024-01-04 17:05:34 +00:00
parent 27cbf48b40
commit 5e96c90996

View File

@ -73,7 +73,7 @@ jobs:
test: 0
preset: linux-clang-test
- platform: linux
os: ubuntu-20.04
os: ubuntu-22.04
test: 0
preset: linux-gcc-test
- platform: linux
@ -242,11 +242,12 @@ jobs:
env:
PULL_REQUEST: ${{ github.event.pull_request.number }}
- name: CMake Preset with ccache
- name: Configure
run: |
cmake -DENABLE_CCACHE:BOOL=ON --preset ${{ matrix.preset }}
if [[ ${{matrix.preset}} == linux-gcc-test ]]; then GCC13=1; fi
cmake -DENABLE_CCACHE:BOOL=ON --preset ${{ matrix.preset }} ${GCC13:+-DCMAKE_C_COMPILER=gcc-13 -DCMAKE_CXX_COMPILER=g++-13}
- name: Build Preset
- name: Build
run: |
cmake --build --preset ${{matrix.preset}}