Merge pull request #196 from PQClean/fix_travis

Update OSX image
This commit is contained in:
Thom Wiggers 2019-06-21 09:28:32 +02:00 committed by GitHub
commit 8a7e6ef81d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ matrix:
include: include:
- name: "MacOS + Clang" - name: "MacOS + Clang"
os: osx os: osx
osx_image: xcode10.1 osx_image: xcode10.2
compiler: clang compiler: clang
before_install: before_install:
- pip3 install -r requirements.txt - pip3 install -r requirements.txt
@ -23,7 +23,7 @@ matrix:
- astyle - astyle
- name: "MacOS + GCC8" - name: "MacOS + GCC8"
os: osx os: osx
osx_image: xcode10.1 osx_image: xcode10.2
compiler: gcc compiler: gcc
addons: addons:
homebrew: homebrew:
@ -48,6 +48,12 @@ matrix:
- "cd test && travis_wait 60 python3 -m nose --rednose --verbose" - "cd test && travis_wait 60 python3 -m nose --rednose --verbose"
cache: pip cache:
directories:
- $HOME/Library/Caches/pip
- $HOME/Library/Caches/Homebrew
before_cache:
- brew cleanup
# vim: set ft=yaml ts=2 sw=2 tw=0 et : # vim: set ft=yaml ts=2 sw=2 tw=0 et :