aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2020-03-24 18:18:15 +0100
committerMarc Hoersken <info@marc-hoersken.de>2020-03-24 18:18:15 +0100
commit840df8b0d99797569f4964037441129c7777cf9a (patch)
tree35b5a5a8b4f85bfce05224c60dd4ea6788d99c26 /.travis.yml
parent2edeb10457db4c19f8a6fcd2a747162d641f5796 (diff)
CI: migrate macOS jobs from Azure and Travis CI to GitHub Actions
Reduce workload on Azure Pipelines and Travis CI while consolidating macOS jobs onto less utilized GitHub Actions. Reviewed-by: Daniel Stenberg Closes #5124
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/.travis.yml b/.travis.yml
index 580bf6223..88cb83571 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -267,28 +267,6 @@ matrix:
env:
- T=iconv
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
- - os: osx
- compiler: gcc
- env: T=debug C="--disable-dict --disable-file --disable-ftp --disable-gopher --disable-imap --disable-ldap --disable-pop3 --disable-rtmp --disable-rtsp --disable-scp --disable-sftp --disable-smb --disable-smtp --disable-telnet --disable-tftp --disable-unix-sockets --disable-shared --enable-debug --enable-maintainer-mode --without-brotli --without-gssapi --without-libidn2 --without-libmetalink --without-libpsl --without-librtmp --without-libssh2 --without-nghttp2 --without-ntlm-auth --without-ssl --without-zlib"
- - os: osx
- compiler: gcc
- env: T=debug C=--enable-ares
- - os: osx
- compiler: gcc
- env: T=debug C="--with-ssl=/usr/local/opt/openssl --with-libmetalink"
- - os: osx
- compiler: gcc
- env: T=debug C="--with-ssl=/usr/local/opt/libressl --with-libmetalink"
- - os: osx
- compiler: clang
- osx_image: xcode10
- env: T=debug C="--without-ssl --with-darwinssl --with-libmetalink"
- - os: osx
- compiler: clang
- env: T=normal
- - os: osx
- compiler: clang
- env: T=cmake
- os: linux
compiler: gcc
dist: bionic
@@ -441,9 +419,6 @@ before_install:
install:
- if [ "$T" = "coverage" ]; then pip2 install --user cpp-coveralls; fi
- - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update > /dev/null; fi
- - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew reinstall libtool > /dev/null; fi
- - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install rtmpdump libssh2 c-ares libmetalink libressl nghttp2 libmetalink; fi
# before_script and script:
# Travis isn't reliable catching errors in inline script commands (#3730).