Skip to content

Merge pull request #2 from Mathics3/release-2.0.0 #15

Merge pull request #2 from Mathics3/release-2.0.0

Merge pull request #2 from Mathics3/release-2.0.0 #15

Workflow file for this run

# Copied from SymPy https://github.com/sympy/sympy/pull/27183
name: Timed Theads (Pyodide)
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
pyodide-test:
runs-on: ubuntu-latest
env:
PYODIDE_VERSION: 0.28.2
# PYTHON_VERSION and EMSCRIPTEN_VERSION are determined by PYODIDE_VERSION.
# The appropriate versions can be found in the Pyodide repodata.json
# "info" field, or in Makefile.envs:
# https://github.com/pyodide/pyodide/blob/main/Makefile.envs#L2
PYTHON_VERSION: 3.13.2
EMSCRIPTEN_VERSION: 4.0.9
NODE_VERSION: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Set up Emscripten toolchain
uses: mymindstorm/setup-emsdk@v14
with:
version: ${{ env.EMSCRIPTEN_VERSION }}
actions-cache-folder: emsdk-cache
- name: Install pyodide-build
run: pip install pyodide-build
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Set up Pyodide virtual environment and run tests
run: |
# Set up Pyodide virtual environment
pyodide xbuildenv install ${{ env.PYODIDE_VERSION }}
pyodide venv .venv-pyodide
# Activate the virtual environment
. .venv-pyodide/bin/activate
pip install "setuptools>=70.0.0" "packaging>=24.2" PyYAML click pytest
pip install -e .
- name: Test Timed Threads
run: |
# Activate the virtual environment
. .venv-pyodide/bin/activate
echo $PATH
python -c "import sys; print(sys.path); import timed_threads"
# python test