44 lines
1.5 KiB
YAML
44 lines
1.5 KiB
YAML
name: VS15-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-vs15
|
|
runs-on: windows-2016
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- {gen: Visual Studio 15 2017, arch: Win32, static: ON}
|
|
- {gen: Visual Studio 15 2017, arch: Win32, static: OFF}
|
|
- {gen: Visual Studio 15 2017, arch: x64, static: ON}
|
|
- {gen: Visual Studio 15 2017, arch: x64, static: OFF}
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
- name: Configure
|
|
run: |
|
|
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -DSIMDJSON_COMPETITION=OFF -DSIMDJSON_DEVELOPER_MODE=ON -DSIMDJSON_BUILD_STATIC=${{matrix.static}} -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 -LE explicitonly --output-on-failure
|
|
- name: Run Debug tests
|
|
run: |
|
|
cd build
|
|
ctest -C Debug -LE explicitonly --output-on-failure
|
|
- name: Install
|
|
run: |
|
|
cmake --install build --config Release
|
|
- name: Test Installation
|
|
run: |
|
|
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -B build_install_test tests/installation_tests/find
|
|
cmake --build build_install_test --config Release |