aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2019-11-22 00:29:27 -0500
committerGitHub <noreply@github.com>2019-11-22 00:29:27 -0500
commit46a3e5a6837929d16670ed78e549882f34800ca4 (patch)
treee61bf62e19ba4c9b4498b857c842cb4d5c96ad71
parentb32cfa790a3de45229c7f84af1d19e3e62fe9afa (diff)
parent85507fc73d15345081a0b0bc5c83c90a1ae8d428 (diff)
downloadreloc-46a3e5a6837929d16670ed78e549882f34800ca4.tar.gz
Merge pull request #2 from jhunkeler/gha-msys2
msys2 attempt
-rw-r--r--.github/workflows/ci.yml11
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