mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-01 02:53:56 -07:00
swap order
This commit is contained in:
parent
21ba7c36d1
commit
31fd3c4bc4
1 changed files with 3 additions and 3 deletions
6
.github/workflows/codeql.yml
vendored
6
.github/workflows/codeql.yml
vendored
|
|
@ -54,7 +54,7 @@ jobs:
|
||||||
dependency-caching: true
|
dependency-caching: true
|
||||||
|
|
||||||
- name: "[C++] Install dependencies"
|
- name: "[C++] Install dependencies"
|
||||||
if: matrix.build-mode == 'manual' && matrix.language == 'cpp'
|
if: matrix.language == 'cpp' && matrix.build-mode == 'manual'
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
DEBIAN_FRONTEND: noninteractive
|
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)
|
# 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"
|
- name: "[C++] Configure CMake"
|
||||||
if: matrix.build-mode == 'manual' && matrix.language == 'cpp'
|
if: matrix.language == 'cpp' && matrix.build-mode == 'manual'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: cmake -S . -B build -G Ninja -DWITH_SERVER=1 -DCMAKE_BUILD_TYPE=Release
|
run: cmake -S . -B build -G Ninja -DWITH_SERVER=1 -DCMAKE_BUILD_TYPE=Release
|
||||||
|
|
||||||
- name: "[C++] Build application"
|
- name: "[C++] Build application"
|
||||||
if: matrix.build-mode == 'manual' && matrix.language == 'cpp'
|
if: matrix.language == 'cpp' && matrix.build-mode == 'manual'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: cmake --build build
|
run: cmake --build build
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue