-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #289 from WiresmithTech/fix/ci-version-issues
fix: Unavailable Versions in CI
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,6 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- {version: [email protected]} | ||
- {version: [email protected]} | ||
- {version: [email protected]} | ||
- {version: hdf5-mpi, mpi: true} | ||
|
@@ -294,7 +293,8 @@ jobs: | |
with: {submodules: true} | ||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
with: {toolchain: stable, targets: x86_64-pc-windows-gnu} | ||
# Last version to support Wine pre 8.13 | ||
with: {toolchain: "1.75", targets: x86_64-pc-windows-gnu} | ||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt install wine64 mingw-w64 | ||
- name: Build and test | ||
|