Skip to content

Commit 1941a45

Browse files
committed
Fix github actions and add testing on macOS Monterey.
1 parent f5399d0 commit 1941a45

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

.github/workflows/bigsur.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python-version: 3.7
1717

1818
- name: get dependencies
19-
run: brew install cmake boost pcre gmp python3 pkgconfig gtkmm3 adwaita-icon-theme && /usr/local/bin/python3 -m pip install sympy gmpy2
19+
run: brew install cmake boost pcre gmp python3 pkgconfig gtkmm3 adwaita-icon-theme && /usr/local/bin/python3 -m pip install sympy gmpy2 numpy
2020

2121
- name: configure
2222
run: mkdir build && cd build && cmake -DENABLE_MATHEMATICA=OFF ..

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python-version: 3.8
1717

1818
- name: get dependencies
19-
run: sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get install git cmake python3-dev g++ libpcre3 libpcre3-dev libgmp3-dev libgtkmm-3.0-dev libboost-all-dev libgmp-dev libsqlite3-dev uuid-dev texlive-base libmpfr-dev libmpc-dev && python3 --version && which python3 && python3 -m pip install --upgrade pip && python3 -m pip install wheel && python3 -m pip install sympy gmpy2
19+
run: sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get install git cmake python3-dev g++ libpcre3 libpcre3-dev libgmp3-dev libgtkmm-3.0-dev libboost-all-dev libgmp-dev libsqlite3-dev uuid-dev texlive-base libmpfr-dev libmpc-dev && python3 --version && which python3 && python3 -m pip install --upgrade pip && python3 -m pip install wheel && python3 -m pip install sympy gmpy2 numpy
2020

2121
- name: configure
2222
run: mkdir build && cd build && cmake -DENABLE_MATHEMATICA=OFF ..

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python-version: 3.7
1717

1818
- name: get dependencies
19-
run: brew install cmake boost pcre gmp python3 pkgconfig gtkmm3 adwaita-icon-theme && /usr/local/bin/python3 -m pip install sympy gmpy2
19+
run: brew install cmake boost pcre gmp python3 pkgconfig gtkmm3 adwaita-icon-theme && /usr/local/bin/python3 -m pip install sympy gmpy2 numpy
2020

2121
- name: configure
2222
run: mkdir build && cd build && cmake -DENABLE_MATHEMATICA=OFF ..

.github/workflows/monterey.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: macOS-monterey
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: macos-12
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
13+
- name: setup python
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: 3.7
17+
18+
- name: get dependencies
19+
run: brew install cmake boost pcre gmp python3 pkgconfig gtkmm3 adwaita-icon-theme && /usr/local/bin/python3 -m pip install sympy gmpy2 numpy
20+
21+
- name: configure
22+
run: mkdir build && cd build && cmake -DENABLE_MATHEMATICA=OFF ..
23+
24+
- name: make
25+
run: cd build && make
26+
27+
- name: make test
28+
run: cd build && make test ARGS="-V"

0 commit comments

Comments
 (0)