From 57d38efd4ddee12a8019b061b21305910480a85d Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 13 Nov 2020 17:20:15 +0000 Subject: [PATCH] Add mac/windows sample builds --- .github/workflows/sample_build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sample_build.yml b/.github/workflows/sample_build.yml index da08449d..9cd98be4 100644 --- a/.github/workflows/sample_build.yml +++ b/.github/workflows/sample_build.yml @@ -10,10 +10,11 @@ on: jobs: build_wheels: - name: Sample build [${{ matrix.result }}] - runs-on: ubuntu-18.04 + name: Sample build [${{ matrix.os }},${{ matrix.result }}] + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-18.04, windows-latest, macos-latest] result: [success, failure] steps: @@ -28,6 +29,11 @@ jobs: run: | python -m pip install -r requirements-dev.txt + - name: Install Visual C++ for Python 2.7 + if: runner.os == 'Windows' + run: | + choco install vcpython27 -f -y + - name: Generate sample project run: | if $should_fail; then