ci: test TauDEM installation on Windows #210
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
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
name: Check Package | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
TauDEM: | |
runs-on: windows-latest | |
name: windows-release | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
R_KEEP_PKG_SOURCE: yes | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install TauDEM on Windows | |
if: runner.os == 'Windows' | |
# https://www.microsoft.com/en-us/download/details.aspx?id=105289 for the mpi exe | |
# to find the link, open the web dev console at requests, then click as if to download the exe | |
# and get the link from the console. | |
# https://www.gisinternals.com/release.php for the gdal msi | |
run: | | |
cd ~ | |
curl -sLO https://download.microsoft.com/download/7/2/7/72731ebb-b63c-4170-ade7-836966263a8f/msmpisetup.exe | |
Start-Process -Wait ".\msmpisetup.exe" -ArgumentList "-unattend" | |
curl -sLO https://download.gisinternals.com/sdk/downloads/release-1930-x64-gdal-3-8-1-mapserver-8-0-1/gdal-3.8.1-1930-x64-core.msi | |
Start-Process -Wait msiexec.exe -ArgumentList "/I gdal-3.8.1-1930-x64-core.msi /quiet" | |
mkdir "C:\taudem" | |
cd "C:\taudem" | |
curl -sLO https://github.com/dtarb/TauDEM/releases/download/v5.3.7/TauDEM537exeWin64.zip | |
unzip TauDEM537exeWin64.zip | |
- name: Test Taudem | |
if: runner.os == 'Windows' | |
run: | | |
$env:Path += ";C:\Program Files\Microsoft MPI\Bin;C:\Program Files\GDAL;C:\taudem;C:\Program Files\TauDEM\TauDEM5Exe" | |
gdalinfo --version | |
mpiexec pitremove inst\test-data\DEM.tif | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: r-release | |
use-public-rspm: true | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: any::rcmdcheck | |
needs: check | |
- uses: r-lib/actions/check-r-package@v2 | |
with: | |
upload-snapshots: true |