setup matrix builds

This commit is contained in:
Charlton, Scott R 2021-05-04 13:16:26 -06:00
parent 1eed24860c
commit 90b0938539

View File

@ -2,13 +2,12 @@ name: CMake
on: on:
push: push:
branches: [ master ]
pull_request: pull_request:
branches: [ master ] branches: [ master ]
env: env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release BUILD_TYPE: RelWithDebInfo
jobs: jobs:
build: build:
@ -18,16 +17,23 @@ jobs:
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: windows-latest runs-on: windows-latest
# Check all combinations of BUILD_SHARED_LIBS and BUILD_CLR_LIBS
strategy:
matrix:
BUILD_SHARED_LIBS: [ON, OFF]
BUILD_CLR_LIBS: [ON, OFF]
exclude:
- BUILD_SHARED_LIBS: OFF
BUILD_CLR_LIBS: ON
continue-on-error:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Check space
run: Get-PSDrive
- name: Configure CMake - name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_SHARED_LIBS=${{matrix.BUILD_SHARED_LIBS}} -DBUILD_CLR_LIBS=${{matrix.BUILD_CLR_LIBS}}
- name: Build - name: Build
# Build your program with the given configuration # Build your program with the given configuration