@@ -140,7 +140,7 @@ jobs:
140
140
include :
141
141
- {os: ubuntu, rust: stable}
142
142
- {os: windows, rust: stable-msvc}
143
- - {os: windows, rust: stable-gnu}
143
+ # - {os: windows, rust: stable-gnu}
144
144
- {os: macos, rust: stable}
145
145
steps :
146
146
- name : Checkout repository
@@ -240,31 +240,31 @@ jobs:
240
240
- name : Build and test all crates
241
241
run : cargo test -vv
242
242
243
- mingw :
244
- name : mingw
245
- runs-on : windows-latest
246
- strategy :
247
- fail-fast : false
248
- matrix :
249
- rust : [stable]
250
- steps :
251
- - name : Checkout repository
252
- uses : actions/checkout@v3
253
- with : {submodules: true}
254
- - name : Install Rust (${{matrix.rust}})
255
- uses : dtolnay/rust-toolchain@stable
256
- with : {toolchain: '${{matrix.rust}}', targets: x86_64-pc-windows-gnu}
257
- - name : Install HDF5
258
- shell : pwsh
259
- run : |
260
- $env:PATH="$env:PATH;C:\msys64\mingw64\bin;C:\msys64\usr\bin;"
261
- C:\msys64\usr\bin\pacman.exe -Syu --noconfirm
262
- C:\msys64\usr\bin\pacman.exe -S --noconfirm mingw-w64-x86_64-hdf5 mingw-w64-x86_64-pkgconf
263
- - name : Build and test all crates
264
- shell : pwsh
265
- run : |
266
- $env:PATH="$env:PATH;C:\msys64\mingw64\bin;"
267
- cargo test -vv --target=x86_64-pc-windows-gnu
243
+ # mingw:
244
+ # name: mingw
245
+ # runs-on: windows-latest
246
+ # strategy:
247
+ # fail-fast: false
248
+ # matrix:
249
+ # rust: [stable]
250
+ # steps:
251
+ # - name: Checkout repository
252
+ # uses: actions/checkout@v3
253
+ # with: {submodules: true}
254
+ # - name: Install Rust (${{matrix.rust}})
255
+ # uses: dtolnay/rust-toolchain@stable
256
+ # with: {toolchain: '${{matrix.rust}}', targets: x86_64-pc-windows-gnu}
257
+ # - name: Install HDF5
258
+ # shell: pwsh
259
+ # run: |
260
+ # $env:PATH="$env:PATH;C:\msys64\mingw64\bin;C:\msys64\usr\bin;"
261
+ # C:\msys64\usr\bin\pacman.exe -Syu --noconfirm
262
+ # C:\msys64\usr\bin\pacman.exe -S --noconfirm mingw-w64-x86_64-hdf5 mingw-w64-x86_64-pkgconf
263
+ # - name: Build and test all crates
264
+ # shell: pwsh
265
+ # run: |
266
+ # $env:PATH="$env:PATH;C:\msys64\mingw64\bin;"
267
+ # cargo test -vv --target=x86_64-pc-windows-gnu
268
268
269
269
msrv :
270
270
name : Minimal Supported Rust Version
0 commit comments