Bump peter-evans/create-pull-request from 6 to 7 #324
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: w10 | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
qt_version: [5.15.2] | |
platform: [windows-latest] | |
arch: [x64] | |
fail-fast: false | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Installing Qt | |
uses: jurplel/[email protected] | |
with: | |
version: ${{ matrix.qt_version }} | |
arch: ${{ matrix.qtarch }} | |
cached: ${{ steps.cache-qt.outputs.cache-hit }} | |
- name: Build GUI | |
shell: pwsh | |
run: | | |
mkdir build-gui | |
cd build-gui | |
cmake .. | |
cmake --build . --parallel | |
ctest --output-on-failure | |
- name: Build CLI | |
shell: pwsh | |
run: | | |
mkdir build-cli | |
cd build-cli | |
cmake -DBUILD_CLI:BOOL=ON .. | |
cmake --build . --parallel | |
ctest --output-on-failure |