1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 15:39:07 +00:00

Use python3-yaml instead of pip on Linux.

This commit is contained in:
Thom Wiggers 2019-02-05 11:03:10 +01:00
parent 11a2a45193
commit a8aa346912
No known key found for this signature in database
GPG Key ID: 001BB0A7CE26E363

View File

@ -12,10 +12,9 @@ matrix:
addons: addons:
apt: apt:
packages: packages:
- valgrind
- python3 - python3
- python3-setuptools - python3-yaml
- python3-pip - valgrind
- name: "Linux + Clang" - name: "Linux + Clang"
os: linux os: linux
compiler: clang compiler: clang
@ -24,14 +23,15 @@ matrix:
addons: addons:
apt: apt:
packages: packages:
- valgrind
- python3 - python3
- python3-setuptools - python3-yaml
- python3-pip - valgrind
- name: "MacOS + Clang" - name: "MacOS + Clang"
os: osx os: osx
osx_image: xcode10.1 osx_image: xcode10.1
compiler: clang compiler: clang
before_install:
- pip3 install -r requirements.txt
env: env:
- MAKETARGET=test-all - MAKETARGET=test-all
- name: "MacOS + GCC8" - name: "MacOS + GCC8"
@ -42,13 +42,11 @@ matrix:
homebrew: homebrew:
packages: packages:
- gcc@8 - gcc@8
before_install:
- pip3 install -r requirements.txt
env: env:
- MAKETARGET=test-all - MAKETARGET=test-all
before_install:
- python3 --version
- pip3 install -r requirements.txt
script: script:
- make ${MAKETARGET} - make ${MAKETARGET}