Skip to content

Commit

Permalink
Windows 2019 option in CI + Disabled fail fast
Browse files Browse the repository at this point in the history
Included the windows 2019 option in the CI workflow as suggested by @mrprajesh in issue #33.
Deactivated fail-safe option to avoid aborting tests on the other platforms.
Kept the "windows-latest" option separate from "windows-2019" to keep track of the issue with the latest version of the window servers in Git actions.
  • Loading branch information
vidalt authored Jan 3, 2023
1 parent d097293 commit 7686c2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/CI_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
os: [ "ubuntu-latest", "windows-2019", "macos-latest", "windows-latest"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: make bin on ${{ matrix.os }}
Expand Down

0 comments on commit 7686c2d

Please sign in to comment.