File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ jobs:
170170 fail-fast : false
171171 matrix :
172172 rust : [stable]
173- version : ["1.8", "1.10"]
173+ version : ["1.8", "1.10", "1.12" ]
174174 steps :
175175 - name : Checkout repository
176176 uses : actions/checkout@v2
@@ -185,10 +185,14 @@ jobs:
185185 VERSION=1.8.21
186186 DL_PATH=hdf5-1.8.21-Std-win7_64-vs14.zip
187187 echo "MSI_PATH=hdf\\HDF5-1.8.21-win64.msi" >> $GITHUB_ENV
188- else
188+ elif [[ "${{matrix.version}}" == "1.10" ]]; then
189189 VERSION=1.10.0
190190 DL_PATH=windows/extra/hdf5-1.10.0-win64-VS2015-shared.zip
191191 echo "MSI_PATH=hdf5\\HDF5-1.10.0-win64.msi" >> $GITHUB_ENV
192+ else
193+ VERSION=1.12.0
194+ DL_PATH=hdf5-1.12.0-Std-win10_64-vs16.zip
195+ echo "MSI_PATH=hdf\\HDF5-1.12.0-win64.msi" >> $GITHUB_ENV
192196 fi
193197 BASE_URL=https://support.hdfgroup.org/ftp/HDF5/prev-releases
194198 echo "DL_URL=$BASE_URL/hdf5-${{matrix.version}}/hdf5-$VERSION/bin/$DL_PATH" >> $GITHUB_ENV
You can’t perform that action at this time.
0 commit comments