From 9ca8884216a65b93dafb9982e1de685e954ca525 Mon Sep 17 00:00:00 2001 From: Bradley Austin Davis Date: Fri, 21 Aug 2020 18:39:05 -0700 Subject: [PATCH] Switching to single-platform build per PR comments --- ci/cmake.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/cmake.yml b/ci/cmake.yml index b69efe7..dae54ec 100644 --- a/ci/cmake.yml +++ b/ci/cmake.yml @@ -8,11 +8,11 @@ env: jobs: build: - - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-latest, ubuntu-latest, macOS-latest] + # 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 steps: - uses: actions/checkout@v2