summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2023-02-03 15:14:52 +0000
committerJoe Orton <jorton@apache.org>2023-02-03 15:14:52 +0000
commit45b670509b355a783a9f634a912660a027b10211 (patch)
tree9b1716b0d2fa41f8d95de76c9496493ef14a7d59
parent828d644c8eba8765843985d9293f033898ed0592 (diff)
downloadapr-45b670509b355a783a9f634a912660a027b10211.tar.gz
Disable Travis since ASF support/sponsorship is ending. [skip ci]
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1907243 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--.travis.yml87
1 files changed, 0 insertions, 87 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index d9027ea98..000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,87 +0,0 @@
-language: c
-os: linux
-dist: bionic
-addons:
- apt:
- packages:
- - libtool-bin
-env:
- global:
- - MARGS="-j2"
-matrix:
- include:
- - name: Default
- - name: Static
- env: CONFIG="--enable-static"
- - name: Maintainer-mode
- env: CONFIG="--enable-maintainer-mode"
- - name: Pool-debug
- env: CONFIG="--enable-pool-debug"
- - name: Pool-debug, maintainer-mode
- env: CONFIG="--enable-pool-debug --enable-maintainer-mode"
- - name: Maintainer-mode, no IPv6
- env: CONFIG="--enable-maintainer-mode --disable-ipv6"
- - name: Maintainer-mode, -Werror
- env: NOTEST_CFLAGS=-Werror
- CONFIG="--enable-maintainer-mode"
- - name: Maintainer-mode, -Werror (Xenial)
- dist: xenial
- env: NOTEST_CFLAGS=-Werror
- CONFIG="--enable-maintainer-mode"
- - name: Maintainer-mode, -Werror (Focal)
- dist: focal
- env: NOTEST_CFLAGS=-Werror
- CONFIG="--enable-maintainer-mode"
- - name: GCC 10, maintainer-mode, -Werror (Focal)
- dist: focal
- env: CC=gcc-10
- NOTEST_CFLAGS="-Werror -O2"
- CONFIG="--enable-maintainer-mode"
- addons:
- apt:
- sources:
- - sourceline: 'ppa:ubuntu-toolchain-r/test'
- packages:
- - libtool-bin
- - gcc-10
- - name: GCC-10, ASan (Focal)
- dist: focal
- # w/o ODBC since DSO unload leaks memory and fails the tests
- env: CC=gcc-10
- NOTEST_CFLAGS="-fsanitize=address -fno-sanitize-recover=address -fno-omit-frame-pointer -Werror -O2"
- CONFIG="--with-odbc=no"
- addons:
- apt:
- sources:
- - sourceline: 'ppa:ubuntu-toolchain-r/test'
- packages:
- - libtool-bin
- - gcc-10
- - name: GCC-10, ASan, pool-debug (Focal)
- dist: focal
- # w/o ODBC since DSO unload leaks memory and fails the tests
- env: CC=gcc-10
- NOTEST_CFLAGS="-fsanitize=address -fno-sanitize-recover=address -fno-omit-frame-pointer -Werror -O2"
- CONFIG="--enable-pool-debug --with-odbc=no"
- addons:
- apt:
- sources:
- - sourceline: 'ppa:ubuntu-toolchain-r/test'
- packages:
- - libtool-bin
- - gcc-10
- - name: GCC-10, UBsan (Focal)
- dist: focal
- env: CC=gcc-10
- NOTEST_CFLAGS="-fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer -Werror -O2"
- addons:
- apt:
- sources:
- - sourceline: 'ppa:ubuntu-toolchain-r/test'
- packages:
- - libtool-bin
- - gcc-10
-
-before_script: sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'
-
-script: ./buildconf && ./configure $CONFIG && make $MARGS && make check