-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update ci to use updated modflow6 repo scripts (#16)
Update OneAPI installation. Update GH Actions versions for pre-canned workflow tasks. Modified GH Actions to use standard python instead of conda python.
- Loading branch information
1 parent
8fd484c
commit 6236680
Showing
6 changed files
with
445 additions
and
701 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
pip install wheel | ||
pip install requests appdirs numpy matplotlib pytest pytest-xdist meson ninja | ||
pip install https://github.com/modflowpy/flopy/zipball/develop | ||
pip install https://github.com/modflowpy/pymake/zipball/master |
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
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 |
---|---|---|
@@ -1,15 +1,16 @@ | ||
REM SPDX-FileCopyrightText: 2020 Intel Corporation | ||
REM SPDX-FileCopyrightText: 2022 Intel Corporation | ||
REM | ||
REM SPDX-License-Identifier: MIT | ||
|
||
set URL=%1 | ||
set COMPONENTS=%2 | ||
|
||
curl.exe --output webimage.exe --url %URL% --retry 5 --retry-delay 5 | ||
start /b /wait webimage.exe -s -x -f webimage_extracted --log extract.log | ||
del webimage.exe | ||
curl.exe --output %TEMP%\webimage.exe --url %URL% --retry 5 --retry-delay 5 | ||
start /b /wait %TEMP%\webimage.exe -s -x -f webimage_extracted --log extract.log | ||
del %TEMP%\webimage.exe | ||
if "%COMPONENTS%"=="" ( | ||
webimage_extracted\bootstrapper.exe -s --action install --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 --log-dir=. | ||
webimage_extracted\bootstrapper.exe -s --action install --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=. | ||
) else ( | ||
webimage_extracted\bootstrapper.exe -s --action install --components=%COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 --log-dir=. | ||
) | ||
webimage_extracted\bootstrapper.exe -s --action install --components=%COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=. | ||
) | ||
rd /s/q "webimage_extracted" |
Oops, something went wrong.