Skip to content

Commit

Permalink
Try this
Browse files Browse the repository at this point in the history
  • Loading branch information
rjfarmer committed Jan 28, 2024
1 parent 7e786b9 commit 3f4c2da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
apt-get update &&
apt-get install -y cmake git python3 python-is-python3 python3-dev python3-venv python3-pip python3-numpy automake libc6-dev linux-libc-dev gcc gfortran &&
git config --global --add safe.directory /gfort2py &&
python -m pip install build wheel pytest dataclasses_json cpyparsing platformdirs importlib_metadata
python -m pip install --upgrade build wheel pytest dataclasses_json cpyparsing platformdirs importlib_metadata
"
docker commit ${TOOLCHAIN_NAME} ${TOOLCHAIN_NAME}
docker save -o docker_${TOOLCHAIN_NAME}.tar ${TOOLCHAIN_NAME}
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Build and test
run: |
docker run -v $(pwd):/gfort2py --platform ${PLATFORM_NAME} ${TOOLCHAIN_NAME} /bin/bash -c "
cd /gfort2py && python -m pip install . && python -m pytest -v"
cd /gfort2py && python -m build && python -m pip install --upgrade --user . && python -m pytest -v"
Expand Down

0 comments on commit 3f4c2da

Please sign in to comment.