diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-05-09 22:35:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 13:35:14 -0700 |
commit | 05203ec3fb027f7e5e167bb362bda3a21db4afa9 (patch) | |
tree | cc6aa45de9fb6e99c7e80eb34cef13f85648c2b3 /.travis.yml | |
parent | 69ea6de06934fd8f7dc8fb89e15f9cea3499814e (diff) | |
download | spack-05203ec3fb027f7e5e167bb362bda3a21db4afa9.tar.gz spack-05203ec3fb027f7e5e167bb362bda3a21db4afa9.tar.bz2 spack-05203ec3fb027f7e5e167bb362bda3a21db4afa9.tar.xz spack-05203ec3fb027f7e5e167bb362bda3a21db4afa9.zip |
Add unit test on MacOS using Github Actions (#14220)
- Remove macos tests from travis
- Add macos tests in github actions.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml index bc914ef512..a11b00f34e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,10 +76,6 @@ jobs: os: linux language: python env: TEST_SUITE=doc - - os: osx - language: generic - env: [ TEST_SUITE=unit, PYTHON_VERSION=2.7, COVERAGE=true ] - if: type != pull_request stages: - 'style checks' @@ -111,15 +107,6 @@ addons: - r-base-core - r-base-dev - zsh - # for Mac builds, we use Homebrew - homebrew: - packages: - - python@2 - - gcc - - gnupg2 - - ccache - - dash - - kcov update: true # ~/.ccache needs to be cached directly as Travis is not taking care of it @@ -130,14 +117,7 @@ cache: directories: - ~/.ccache -# Work around Travis's lack of support for Python on OSX before_install: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then - pip2 install --upgrade pip; - pip2 install virtualenv; - virtualenv venv; - source venv/bin/activate; - fi - ccache -M 2G && ccache -z # Install various dependencies |