updates to python CI yml file

release/4.3a0
Varun Agrawal 2020-08-15 15:50:59 -05:00
parent d9f5c1ebb7
commit 0172cd3c8c
2 changed files with 4 additions and 5 deletions

View File

@ -60,9 +60,8 @@ jobs:
sudo add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-9 main"
fi
sudo apt-get -y update
sudo apt-get -y upgrade
sudo apt install cmake g++-9 clang-9 build-essential pkg-config libpython-dev python-numpy libboost-all-dev
sudo apt install cmake build-essential pkg-config libpython-dev python-numpy libboost-all-dev
if [ "${{ matrix.compiler }}" = "gcc" ]; then
sudo apt-get install -y g++-${{ matrix.version }} g++-${{ matrix.version }}-multilib
@ -89,8 +88,8 @@ jobs:
- name: Build (Linux)
if: runner.os == 'Linux'
run: |
bash .travis.python.sh
bash .github/scripts/python.sh
- name: Build (macOS)
if: runner.os == 'macOS'
run: |
bash .travis.python.sh
bash .github/scripts/python.sh

View File

@ -1,4 +1,4 @@
name: CI Windows
name: Windows CI
on: [pull_request]