Skip to content

Commit

Permalink
Tweak variable expansion
Browse files Browse the repository at this point in the history
  • Loading branch information
zbeekman committed Jan 19, 2024
1 parent cc1b958 commit bfee61d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/win-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
run: |
echo "${{ steps.setup-mpi.outputs.mpi }}"
mpiexec --version
ls $env:I_MPI_ROOT
ls $env:I_MPI_ROOT\bin
ls $env:I_MPI_ROOT\lib
ls $I_MPI_ROOT
ls $I_MPI_ROOT\bin
ls $I_MPI_ROOT\lib
mpifc.bat -show
mpicc.bat -show
Expand All @@ -57,17 +57,17 @@ jobs:
}
mkdir build
$env:VERBOSE = 1
cmake -Wdev -G "Unix Makefiles" -S . -B build -DCMAKE_INSTALL_PREFIX=$env:HOME\apps\OpenCoarrays -DCMAKE_BUILD_TYPE:STRING="Debug"
make -Wdev -G "Unix Makefiles" -S . -B build -DCMAKE_INSTALL_PREFIX=$HOME\apps\OpenCoarrays -DCMAKE_BUILD_TYPE:STRING="Debug"
ThrowOnNativeFailure
cmake --build build -j
ThrowOnNativeFailure
cmake --build build -t install -j
ThrowOnNativeFailure
ctest --test-dir build --output-on-failure --schedule-random --repeat-until-fail 1 --timeout 200
ThrowOnNativeFailure
echo $env:HOME\apps\OpenCoarrays\bin | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo $HOME\apps\OpenCoarrays\bin | Out-File -FilePath $GITHUB_PATH -Encoding utf8 -Append
ThrowOnNativeFailure
$env:PATH += ';' + $env:HOME + '\apps\OpenCoarrays\bin'
$env:PATH += ";$HOME\apps\OpenCoarrays\bin"
ThrowOnNativeFailure
cafrun --show
ThrowOnNativeFailure
Expand Down

0 comments on commit bfee61d

Please sign in to comment.