Sync workflows and versions with mathics-core #467
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mathics (Windows) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
os: [windows] | |
python-version: ['3.11'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install OS dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install wheel | |
choco install llvm nodejs | |
set LLVM_DIR="C:\Program Files\LLVM" | |
- name: Install Python dependencies | |
run: | | |
# Can adjust when next Mathics is released | |
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full] | |
# For testing 3.11 we need to do something like the below until the next Mathics3 is released | |
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full] | |
# python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full] | |
git clone --branch master https://github.com/Mathics3/mathics-core | |
bash -c '(cd mathics-core && pip3 install -e .[full])' | |
bash -c '(cd mathics-core && bash ./admin-tools/make-op-tables.sh)' | |
- name: Install Mathics3 Django | |
run: | | |
python -m pip install pytest pexpect | |
npm install | |
python -m pip install -e .[full] | |
cp node_modules/\@mathicsorg/mathics-threejs-backend/docs/build.js mathics_django/web/media/js/mathics-threejs-backend/index.js | |
cp node_modules/\@mathicsorg/mathics-threejs-backend/package.json mathics_d | |
- name: Test Mathics3 Django | |
run: | | |
make pytest gstest | |
# import WordCloud fails with: | |
# DLL load failed wile importing _c_interal_utils | |
# Until we can't figure out what's up with TextRecognize: | |
make doctest o="--exclude TextRecognize,PythonCProfileEvaluation,WordCloud" | |
# make check |