File tree Expand file tree Collapse file tree 3 files changed +40
-2
lines changed
Expand file tree Collapse file tree 3 files changed +40
-2
lines changed Original file line number Diff line number Diff line change 1- name : Mathics (macOS)
1+ name : pymathics-natlang (macOS)
22
33on :
44 push :
Original file line number Diff line number Diff line change 1- name : Mathics (ubuntu)
1+ name : pymathics-natlang (ubuntu)
22
33on :
44 push :
88
99jobs :
1010 build :
11+ env :
12+ LDFLAGS : " -L/usr/local/opt/llvm@11/lib"
13+ CPPFLAGS : " -I/usr/local/opt/llvm@11/include"
1114 runs-on : ubuntu-latest
1215 strategy :
1316 matrix :
Original file line number Diff line number Diff line change 1+ name : pymathics-natlang (Windows)
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+ runs-on : windows-latest
12+ strategy :
13+ matrix :
14+ os : [windows]
15+ python-version : [ 3.7, 3.8]
16+ steps :
17+ - uses : actions/checkout@v3
18+ - name : Set up Python ${{ matrix.python-version }}
19+ uses : actions/setup-python@v2
20+ with :
21+ python-version : ${{ matrix.python-version }}
22+ - name : Install dependencies
23+ run : |
24+ python -m pip install --upgrade pip
25+ python -m pip install wheel
26+ choco install llvm
27+ pip install pytest
28+ # Can remove after next Mathics-core release
29+ python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
30+ - name : Install pymathics.natlang
31+ run : |
32+ pip install -e .
33+ - name : Test Mathics
34+ run : |
35+ make check
You can’t perform that action at this time.
0 commit comments