Skip to content

Commit

Permalink
More variable testing
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeekman committed Jan 19, 2024
1 parent 88485dc commit 1ac7597
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/win-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,16 @@ jobs:
run: |
echo "${{ steps.setup-mpi.outputs.mpi }}"
mpiexec --version
ls $I_MPI_ROOT
ls "$I_MPI_ROOT\bin"
ls "$I_MPI_ROOT\lib"
ls $env:I_MPI_ROOT
ls "$env:I_MPI_ROOT\bin"
ls "$env:I_MPI_ROOT\lib"
mpifc.bat -show
mpicc.bat -show
echo $HOME
echo $env:HOME
echo $home
echo $env:home
echo "$env:home/some/path"

- name: Build and Test
run: |
Expand All @@ -67,7 +72,7 @@ jobs:
ThrowOnNativeFailure
ctest --test-dir build --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
ThrowOnNativeFailure
echo "$HOME\apps\OpenCoarrays\bin" | Out-File -FilePath $GITHUB_PATH -Encoding utf8 -Append
echo "$HOME\apps\OpenCoarrays\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
ThrowOnNativeFailure
$env:PATH += ";$HOME\apps\OpenCoarrays\bin"
ThrowOnNativeFailure
Expand Down

0 comments on commit 1ac7597

Please sign in to comment.