Skip to content

Commit 075eece

Browse files
committed
CI tweaks
1 parent 9746a47 commit 075eece

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

.github/workflows/osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mathics (macOS)
1+
name: pymathics-natlang (macOS)
22

33
on:
44
push:

.github/workflows/ubuntu.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mathics (ubuntu)
1+
name: pymathics-natlang (ubuntu)
22

33
on:
44
push:
@@ -8,6 +8,9 @@ on:
88

99
jobs:
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:

.github/workflows/windows.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

0 commit comments

Comments
 (0)