diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2022-01-24 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2022-01-24 08:00:00 +0000 |
commit | 7ea1119a382ca07a9a60ee2044c49eefbb87de9c (patch) | |
tree | c8002fe5b2016841066ff18cdf8c9582535cea42 | |
parent | d8d4cf51ee112e79e151140bb5ed8037a1637bdb (diff) | |
download | pam-7ea1119a382ca07a9a60ee2044c49eefbb87de9c.tar.gz pam-7ea1119a382ca07a9a60ee2044c49eefbb87de9c.tar.bz2 pam-7ea1119a382ca07a9a60ee2044c49eefbb87de9c.zip |
Drop Travis CI support
The last build of Linux-PAM by travis-ci.org was in March of 2020,
and travis-ci.org says that all building is ceased since June of 2021.
Given that in foreseeable future travis-ci.com is not going to welcome
free software projects, there is no use to keep Travis CI support
in the tree.
* .travis.yml: Remove.
Link: https://blog.travis-ci.com/2020-11-02-travis-ci-new-billing
-rw-r--r-- | .travis.yml | 123 |
1 files changed, 0 insertions, 123 deletions
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b8326d09..00000000 --- a/.travis.yml +++ /dev/null @@ -1,123 +0,0 @@ -language: c - -dist: bionic - -before_install: ci/install-dependencies.sh - -script: ci/run-build-and-tests.sh - -sudo: required - -git: - depth: 2147483647 - -env: - global: - - VERBOSE=1 - -matrix: - include: - - compiler: gcc - arch: amd64 - env: - - TARGET=x86_64 - - compiler: gcc-10 - arch: amd64 - env: - - TARGET=x86_64 - - compiler: gcc-9 - arch: amd64 - env: - - TARGET=x86_64 - - compiler: gcc-8 - arch: amd64 - env: - - TARGET=x86_64 - - compiler: clang - arch: amd64 - env: - - TARGET=x86_64 - - compiler: gcc - arch: amd64 - env: - - TARGET=x86 - - compiler: gcc-10 - arch: amd64 - env: - - TARGET=x86 - - compiler: gcc-9 - arch: amd64 - env: - - TARGET=x86 - - compiler: gcc-8 - arch: amd64 - env: - - TARGET=x86 - - compiler: clang - arch: amd64 - env: - - TARGET=x86 - - compiler: gcc - arch: amd64 - env: - - TARGET=x32 - - compiler: gcc-10 - arch: amd64 - env: - - TARGET=x32 - - compiler: gcc-9 - arch: amd64 - env: - - TARGET=x32 - - compiler: gcc-8 - arch: amd64 - env: - - TARGET=x32 - - compiler: clang - arch: amd64 - env: - - TARGET=x32 - - compiler: gcc - arch: arm64 - env: - - TARGET=aarch64 - - compiler: gcc-8 - arch: arm64 - env: - - TARGET=aarch64 - - compiler: clang - arch: arm64 - env: - - TARGET=aarch64 - - compiler: gcc - arch: s390x - env: - - TARGET=s390x - - compiler: gcc-8 - arch: s390x - env: - - TARGET=s390x - - compiler: clang - arch: s390x - env: - - TARGET=s390x - - compiler: gcc - arch: ppc64le - env: - - TARGET=ppc64le - - compiler: gcc-10 - arch: ppc64le - env: - - TARGET=ppc64le - - compiler: gcc-9 - arch: ppc64le - env: - - TARGET=ppc64le - - compiler: gcc-8 - arch: ppc64le - env: - - TARGET=ppc64le - - compiler: clang - arch: ppc64le - env: - - TARGET=ppc64le |