Skip to content

Commit

Permalink
init github actions for mac/linux/windows
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipDeegan committed Oct 31, 2021
1 parent 5f9e4c0 commit c1a6ae3
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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
- name: Test shared
shell: bash
run: cd build && ctest --output-on-failure

0 comments on commit c1a6ae3

Please sign in to comment.