Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Nov 3, 2023
1 parent b2038c4 commit 31a132c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/UnitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -503,10 +503,19 @@ jobs:
uses: actions/checkout@v4

- name: Set MPITRAMPOLINE_MPIEXEC
run: echo "MPITRAMPOLINE_MPIEXEC=$(which mpiexec)" >> "${GITHUB_ENV}"
run: |
export MPITRAMPOLINE_MPIEXEC=$(which mpiexec)
echo "MPITRAMPOLINE_MPIEXEC=$(which mpiexec)" >> "${GITHUB_ENV}"
echo ${MPITRAMPOLINE_MPIEXEC}
echo $(realpath ${MPITRAMPOLINE_MPIEXEC})
${MPITRAMPOLINE_MPIEXEC} --version
- name: Build MPIwrapper
run: |
echo ${MPITRAMPOLINE_MPIEXEC}
echo $(realpath ${MPITRAMPOLINE_MPIEXEC})
${MPITRAMPOLINE_MPIEXEC} --version
apt-get update
apt-get install -y wget cmake gcc g++ gfortran python3
wget https://github.com/eschnett/MPIwrapper/archive/refs/tags/v${MPIWrapper}.tar.gz
Expand Down

0 comments on commit 31a132c

Please sign in to comment.