From b25e65f85ae272c1c35cfcb94f63b87610926b72 Mon Sep 17 00:00:00 2001 From: Mate Soos Date: Thu, 25 Apr 2024 15:21:30 +0200 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e772c5f..ecba512 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,17 +6,24 @@ env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release + jobs: build: # The CMake configure and build commands are platform agnostic and should work equally # well on Windows or Mac. You can convert this to a matrix build if you need # cross-platform coverage. # See: https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix - runs-on: ubuntu-latest - + runs-on: ${{ matrix.os }} + strategy: + matrix: + #os: [ubuntu-20.04, windows-2022, macos-13] + os: [ubuntu-20.04, macos-13] + build_type: ['Release'] + staticcompile: ['ON', 'OFF'] + steps: - uses: actions/checkout@v2 - + - name: Create Build Environment # Some projects don't allow in-source building, so create a separate build directory # We'll use this as our working directory for all subsequent commands