Skip to content

Commit 980364b

Browse files
committed
adjust workflows
1 parent 2d7c2c0 commit 980364b

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
lines changed

.github/workflows/MSWindows.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ jobs:
2424
python -m pip install --upgrade pip
2525
python -m pip install pytest
2626
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner
27-
# git clone --depth 1 https://github.com/Mathics3/mathics-core mathics-core
28-
# cd mathics-core
29-
# python -m pip install -e .
30-
# bash admin-tools/make-JSON-tables.sh
31-
# cd ..
32-
# python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
27+
git clone --depth 1 https://github.com/Mathics3/mathics-scanner.git
28+
cd mathics-scanner/
29+
pip install -e .
30+
bash -x admin-tools/make-JSON-tables.sh
31+
cd ..
32+
git clone https://github.com/Mathics3/mathics-core
33+
(cd mathics-core && pip3 install -e .[full])
34+
(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
3335
- name: Install Mathic3 vectorizedplot Module
3436
run: |
3537
python -m pip install Mathics3

.github/workflows/MacOS.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,14 @@ jobs:
2525
python -m pip install --upgrade pip
2626
python -m pip install pytest
2727
# # Go over and comment out stuff when next Mathics core and Mathics-scanner are released
28-
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
29-
# git clone https://github.com/Mathics3/mathics-core
30-
# (cd mathics-core && pip3 install -e .[full])
31-
# (cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
32-
# python -m pip install -e git+https://github.com/Mathics3/Mathics3-Module-Base#egg=Mathics3-Module-Base
28+
git clone --depth 1 https://github.com/Mathics3/mathics-scanner.git
29+
cd mathics-scanner/
30+
pip install -e .
31+
bash -x admin-tools/make-JSON-tables.sh
32+
cd ..
33+
git clone https://github.com/Mathics3/mathics-core
34+
(cd mathics-core && pip3 install -e .[full])
35+
(cd mathics-core && bash ./admin-tools/make-JSON-tables.sh)
3336
- name: Install Mathic3 vectorizedplot Module
3437
run: |
3538
python -m pip install Mathics3

0 commit comments

Comments
 (0)