Skip to content

Commit

Permalink
Revert "Temporarily run tests, CasADi is source compiled"
Browse files Browse the repository at this point in the history
This reverts commit 6c658d1.
  • Loading branch information
agriyakhetarpal committed Jun 12, 2024
1 parent 6c658d1 commit 6980f7e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,13 @@ jobs:
CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair -w {dest_dir} {wheel}
# Test on amd64, skip test on aarch64 for now
CIBW_TEST_COMMAND: |
python -c "import pybamm; print(pybamm.IDAKLUSolver())"
set -e -x
if [[ "$(uname -m)" == "x86_64" ]]; then
python -c "import pybamm; print(pybamm.IDAKLUSolver())"
else
echo "Skipping test on aarch64"
exit 0
fi
- name: Upload wheels for Linux
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 6980f7e

Please sign in to comment.