mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: VS17-CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
ci:
|
|
if: >-
|
|
! contains(toJSON(github.event.commits.*.message), '[skip ci]') &&
|
|
! contains(toJSON(github.event.commits.*.message), '[skip github]')
|
|
name: windows-vs17
|
|
runs-on: windows-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- {gen: Visual Studio 17 2022, arch: Win32}
|
|
- {gen: Visual Studio 17 2022, arch: Win32}
|
|
- {gen: Visual Studio 17 2022, arch: x64}
|
|
- {gen: Visual Studio 17 2022, arch: x64}
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3
|
|
- name: Configure
|
|
run: |
|
|
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -B build
|
|
- name: Build Debug
|
|
run: cmake --build build --config Debug --verbose
|
|
- name: Build Release
|
|
run: cmake --build build --config Release --verbose
|
|
- name: Run Release tests
|
|
run: |
|
|
cd build
|
|
ctest -C Release --output-on-failure
|
|
- name: Run Debug tests
|
|
run: |
|
|
cd build
|
|
ctest -C Debug --output-on-failure
|