diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-21 15:41:37 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-21 22:56:58 -0500 |
commit | 85507fc73d15345081a0b0bc5c83c90a1ae8d428 (patch) | |
tree | e61bf62e19ba4c9b4498b857c842cb4d5c96ad71 | |
parent | b32cfa790a3de45229c7f84af1d19e3e62fe9afa (diff) | |
download | reloc-85507fc73d15345081a0b0bc5c83c90a1ae8d428.tar.gz |
Fixup Windows CI matrix
* Add MSVC target
* Add MSYS target
-rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be6a633..9723294 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest] - + steps: - uses: actions/checkout@v1 - name: configure @@ -23,15 +23,20 @@ jobs: run: sudo make install windows: - name: "${{ matrix.os }}" + name: "${{ matrix.os }}: ${{ matrix.target }}" runs-on: "${{ matrix.os }}" strategy: matrix: os: [windows-latest] + target: ["Visual Studio 16 2019", "MSYS Makefiles"] + env: + MTARGET: "${{ matrix.target }}" + steps: - uses: actions/checkout@v1 - name: configure - run: cmake . + run: cmake -G "${env:MTARGET}" . + shell: pwsh - name: make run: cmake --build . - name: test |