Browse Source

Temporarily disabled Mac builds in Travis

tempestpy_adaptions
Matthias Volk 7 years ago
parent
commit
22d97332b0
  1. 117
      .travis.yml

117
.travis.yml

@ -39,31 +39,6 @@ jobs:
# Stage: Build (1st run)
###
# osx
- stage: Build (1st run)
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultDebug COMPILER=clang STL=libc++
install:
- rm -rf build
- travis/install_osx.sh
script:
- travis/build.sh Build1
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
- stage: Build (1st run)
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultRelease COMPILER=clang STL=libc++
install:
- rm -rf build
- travis/install_osx.sh
script:
- travis/build.sh Build1
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
# ubuntu-16.10
- stage: Build (1st run)
os: linux
@ -96,29 +71,6 @@ jobs:
# Stage: Build (2nd run)
###
# osx
- stage: Build (2nd run)
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultDebug COMPILER=clang STL=libc++
install:
- travis/install_osx.sh
script:
- travis/build.sh Build2
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
- stage: Build (2nd run)
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultRelease COMPILER=clang STL=libc++
install:
- travis/install_osx.sh
script:
- travis/build.sh Build2
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
# ubuntu-16.10
- stage: Build (2nd run)
os: linux
@ -149,29 +101,6 @@ jobs:
# Stage: Build (3rd run)
###
# osx
- stage: Build (3rd run)
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultDebug COMPILER=clang STL=libc++
install:
- travis/install_osx.sh
script:
- travis/build.sh Build3
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
- stage: Build (3rd run)
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultRelease COMPILER=clang STL=libc++
install:
- travis/install_osx.sh
script:
- travis/build.sh Build3
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
# ubuntu-16.10
- stage: Build (3rd run)
os: linux
@ -202,29 +131,6 @@ jobs:
# Stage: Build (4th run)
###
# osx
- stage: Build (4th run)
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultDebug COMPILER=clang STL=libc++
install:
- travis/install_osx.sh
script:
- travis/build.sh BuildLast
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
- stage: Build (4th run)
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultRelease COMPILER=clang STL=libc++
install:
- travis/install_osx.sh
script:
- travis/build.sh BuildLast
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
# ubuntu-16.10
- stage: Build (4th run)
os: linux
@ -255,29 +161,6 @@ jobs:
# Stage: Test all
###
# osx
- stage: Test all
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultDebug COMPILER=clang STL=libc++
install:
- travis/install_osx.sh
script:
- travis/build.sh TestAll
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
- stage: Test all
os: osx
osx_image: xcode9.1
compiler: clang
env: CONFIG=DefaultRelease COMPILER=clang STL=libc++
install:
- travis/install_osx.sh
script:
- travis/build.sh TestAll
after_failure:
- find build -iname '*err*.log' -type f -print -exec cat {} \;
# ubuntu-16.10
- stage: Test all
os: linux

Loading…
Cancel
Save