Skip to content

Commit

Permalink
Update pyodide.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner authored Nov 15, 2024
1 parent 4d0394e commit 4cdc3d6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/pyodide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,18 @@ jobs:
uses: actions/checkout@v4

- name: Configure CMake and build
run: |
run: |
sudo apt-get update && sudo apt-get install -y python3-dev python3-pip python3-venv
python3 -m venv ~/env
~/env/bin/pip install pyodide-build
git clone https://github.com/emscripten-core/emsdk.git ~/emsdk && cd ~/emsdk && PYODIDE_EMSCRIPTEN_VERSION=$(~/env/bin/pyodide config get emscripten_version) && ./emsdk install ${PYODIDE_EMSCRIPTEN_VERSION} && ./emsdk activate ${PYODIDE_EMSCRIPTEN_VERSION}
- name: Setup EMSDK
run: |
source ~/emsdk/emsdk_env.sh && cd src/api/python && ~/env/bin/pyodide build --exports whole_archive
source ~/emsdk/emsdk_emv.sh && ~/env/bin/pyodide venv ~/env-pyodide
- name: Setup z3 wheel
run: |
~/env-pyodide/bin/pip install z3/src/api/python/dist/*.whl
~/env-pyodide/bin/python - <z3/src/api/python/z3test.py z3 && ~/env-pyodide/bin/python - <z3/src/api/python/z3test.py z3num
~/env-pyodide/bin/python - <src/api/python/z3test.py z3 && ~/env-pyodide/bin/python - <src/api/python/z3test.py z3num

0 comments on commit 4cdc3d6

Please sign in to comment.