Skip to content

Commit bd522e7

Browse files
committed
Fix github workflow runtime deps.
1 parent 2151b4a commit bd522e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ccpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: get dependencies
13-
run: sudo 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 python3-mpmath python3-sympy python3-gmpy2 python3-setuptools && pip3 install sympy
13+
run: sudo 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 python3-mpmath python3-sympy python3-gmpy2
1414
- name: configure
1515
run: mkdir build && cd build && cmake -DENABLE_MATHEMATICA=OFF ..
1616
- name: make
1717
run: cd build && make
1818
- name: make test
19-
run: cd build && make test ARGS="-V"
19+
run: sudo apt-get install python3-sympy python3-gmpy2 && cd build && make test ARGS="-V"

0 commit comments

Comments
 (0)