fmt/.github/workflows/windows.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2020-11-03 18:46:03 +00:00
name: windows
2020-11-03 18:45:16 +00:00
on: [push]
jobs:
build:
2020-11-03 20:16:15 +00:00
runs-on: ${{matrix.os}}
strategy:
matrix:
# windows-2016 and windows-2019 have MSVC 2017 and 2019 installed
# respectively: https://github.com/actions/virtual-environments.
os: [windows-2016, windows-2019]
platform: [Win32, x64]
build_type: [Debug, Release]
exclude:
- os: windows-2016
platform: Win32
2020-11-03 18:45:16 +00:00
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
2020-11-03 20:16:15 +00:00
# Use a bash shell for $GITHUB_WORKSPACE.
2020-11-03 18:45:16 +00:00
shell: bash
working-directory: ${{runner.workspace}}/build
2020-11-03 20:16:15 +00:00
run: |
cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
-A ${{matrix.platform}} $GITHUB_WORKSPACE
2020-11-03 18:45:16 +00:00
- name: Build
working-directory: ${{runner.workspace}}/build
2020-11-03 20:16:15 +00:00
run: cmake --build . --config ${{matrix.build_type}}
2020-11-03 18:45:16 +00:00
- name: Test
working-directory: ${{runner.workspace}}/build
2020-11-03 20:16:15 +00:00
run: ctest -C ${{matrix.build_type}}