mirror of
https://github.com/catchorg/Catch2.git
synced 2025-02-20 13:23:30 +01:00
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
![]() |
name: Windows builds (basic)
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: ${{matrix.os}}, ${{matrix.std}}, ${{matrix.build_type}}
|
||
|
runs-on: ${{matrix.os}}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [windows-2019, windows-2022]
|
||
|
platform: [Win32, x64]
|
||
|
build_type: [Debug, Release]
|
||
|
std: [14, 17]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Configure build
|
||
|
working-directory: ${{runner.workspace}}
|
||
|
run: |
|
||
|
cmake -S $Env:GITHUB_WORKSPACE `
|
||
|
-B ${{runner.workspace}}/build `
|
||
|
-DCMAKE_CXX_STANDARD=${{matrix.std}} `
|
||
|
-A ${{matrix.platform}} `
|
||
|
--preset all-tests
|
||
|
|
||
|
- name: Build tests
|
||
|
working-directory: ${{runner.workspace}}
|
||
|
run: |
|
||
|
$jobs = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors
|
||
|
cmake --build build --config ${{matrix.build_type}} --parallel $jobs
|
||
|
|
||
|
- name: Run tests
|
||
|
working-directory: ${{runner.workspace}}/build
|
||
|
env:
|
||
|
CTEST_OUTPUT_ON_FAILURE: 1
|
||
|
run: |
|
||
|
$jobs = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors
|
||
|
ctest -C ${{matrix.build_type}} -j $jobs
|