diff options
| author | 2024-09-27 17:57:12 -0500 | |
|---|---|---|
| committer | 2024-09-27 17:57:12 -0500 | |
| commit | 859fc8912952bda1c11134b6b0d621ce6f1b46ff (patch) | |
| tree | 191c9e61bc019181c9496bcf37e6070a4257daab /.github/workflows | |
| parent | Fix issue 198 on windows. (diff) | |
Trigger CI change.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 849157c..4adae23 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Test on: push: - branches: [ master ] + branches: [ master, msvc-detect ] pull_request_target: branches: [ master ] @@ -39,7 +39,7 @@ jobs: name: Build and test on Windows strategy: matrix: - os: [ windows-2022 ] + os: [ windows-2022, windows-2019 ] janet-version: [ 1.36.0 ] runs-on: ${{ matrix.os }} steps: @@ -55,7 +55,7 @@ jobs: - name: Build Spork shell: cmd run: | - refreshenv & "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 & cd spork & janet -l ./bundle -e "(do (setdyn :verbose true) (build))" + refreshenv & cd spork & janet -l ./bundle -e "(do (setdyn :verbose true) (build))" - name: Test Install shell: cmd run: | |
