Github PR #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Github PR | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
permissions: read-all | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
cmake-build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
build: [static, shared] | |
generator: ["Default Generator", "MinGW Makefiles"] | |
exclude: | |
- os: macos-latest | |
build: shared | |
- os: macos-latest | |
generator: "MinGW Makefiles" | |
- os: ubuntu-latest | |
generator: "MinGW Makefiles" | |
env: | |
YAML_BUILD_SHARED_LIBS: ${{ matrix.build == 'shared' && 'ON' || 'OFF' }} | |
YAML_CPP_BUILD_TESTS: 'ON' | |
CMAKE_GENERATOR: >- | |
${{format(matrix.generator != 'Default Generator' && '-G "{0}"' || '', matrix.generator)}} | |
CMAKE_INSTALL_PREFIX: "${{ github.workspace }}/install-prefix" | |
CMAKE_BUILD_TYPE: Debug | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure | |
run: | | |
cmake \ | |
${{ env.CMAKE_GENERATOR }} \ | |
-S "${{ github.workspace }}" \ | |
-B build \ | |
-D CMAKE_INSTALL_PREFIX="${{ env.CMAKE_INSTALL_PREFIX }}" \ | |
-D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} \ | |
-D YAML_BUILD_SHARED_LIBS=${{ env.YAML_BUILD_SHARED_LIBS }} \ | |
-D YAML_CPP_BUILD_TESTS=${{ env.YAML_CPP_BUILD_TESTS }} | |
- name: Build | |
run: | | |
cmake \ | |
--build build \ | |
--config ${{ env.CMAKE_BUILD_TYPE }} \ | |
--verbose \ | |
--parallel | |
- name: Run Tests | |
shell: bash | |
run: | | |
ctest \ | |
--test-dir build \ | |
--build-config ${{ env.CMAKE_BUILD_TYPE }} \ | |
--output-on-failure \ | |
--verbose | |
- name: Install | |
run: cmake --install build --config ${{ env.CMAKE_BUILD_TYPE }} | |
- name: Configure CMake package test | |
run: | | |
cmake \ | |
${{ env.CMAKE_GENERATOR }} \ | |
-S "${{ github.workspace }}/test/cmake" \ | |
-B consumer-build \ | |
-D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} \ | |
-D CMAKE_PREFIX_PATH="${{ env.CMAKE_INSTALL_PREFIX }}" | |
- name: Build CMake package test | |
run: | | |
cmake \ | |
--build consumer-build \ | |
--config ${{ env.CMAKE_BUILD_TYPE }} \ | |
--verbose | |
bazel-build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
cd "${{ github.workspace }}" | |
bazel build :all | |
- name: Test | |
run: | | |
cd "${{ github.workspace }}" | |
bazel test test | |