Files
yaml-cpp/.github/workflows/build.yml
TheVice d8d9419092 Fix shared library tests for Windows (#1074)
Add copying of shared library to the output directory with a test binary.

[binary] removed using of non unsigned char as argument at
'std::isspace' function that was provokes undefined behavior.

[.github/workflows/build.yml] enabled run of test at the
'windows-latest' environment.
2021-12-15 13:38:09 -06:00

41 lines
1013 B
YAML

name: Github PR
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Build static
shell: bash
run: |
mkdir -p build && cd build
cmake ..
cmake --build . --parallel 4
- name: Test static
shell: bash
run: cd build && ctest --output-on-failure
- name: Build shared
shell: bash
run: |
rm -rf build && mkdir -p build && cd build
cmake .. -DYAML_BUILD_SHARED_LIBS=ON
cmake --build . --parallel 4
# tests are failing for unknown reasons
- if: matrix.os != 'macos-latest'
name: Test shared
shell: bash
run: cd build && ctest --output-on-failure
# test all ASAP