From 4ae8d8671fb160dd93f7f1b92895093520798560 Mon Sep 17 00:00:00 2001 From: McMassiveNZ <12842622+McMassiveNZ@users.noreply.github.com> Date: Fri, 23 Dec 2022 23:59:59 +0100 Subject: [PATCH] add OSX Add OSX to the CI platforms --- .github/workflows/cmake.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 2e1c0e1..15a6271 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-latest, ubuntu-latest] + os: [windows-latest, ubuntu-latest, macos-latest] build_configuration: [Debug, Release] include: - os: 'windows-latest' @@ -28,6 +28,9 @@ jobs: - os: 'ubuntu-latest' triplet: x64-linux vcpkg_bootstrap: bootstrap-vcpkg.sh + - os: 'macos-latest' + triplet: x64-osx + vcpkg_bootstrap: bootstrap-vcpkg.sh steps: - name: checkout