swap order

This commit is contained in:
tooomm 2026-06-19 19:27:05 +02:00 committed by GitHub
parent 21ba7c36d1
commit 31fd3c4bc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,7 +54,7 @@ jobs:
dependency-caching: true
- name: "[C++] Install dependencies"
if: matrix.build-mode == 'manual' && matrix.language == 'cpp'
if: matrix.language == 'cpp' && matrix.build-mode == 'manual'
shell: bash
env:
DEBIAN_FRONTEND: noninteractive
@ -79,12 +79,12 @@ jobs:
# Add ccache usage for faster compilation, (install ccache dep, actions/cache step + append DUSE_CCACHE=1 in cmake config, CCACHE env values)
- name: "[C++] Configure CMake"
if: matrix.build-mode == 'manual' && matrix.language == 'cpp'
if: matrix.language == 'cpp' && matrix.build-mode == 'manual'
shell: bash
run: cmake -S . -B build -G Ninja -DWITH_SERVER=1 -DCMAKE_BUILD_TYPE=Release
- name: "[C++] Build application"
if: matrix.build-mode == 'manual' && matrix.language == 'cpp'
if: matrix.language == 'cpp' && matrix.build-mode == 'manual'
shell: bash
run: cmake --build build