Browse Source
Remove support for running the CI in travis. The last builds in it are from 5 months ago[1] (as of 2021-11-19), and our documentation has referred to GitHub CI instead sincemaintf003a91f5c
(SubmittingPatches: replace discussion of Travis with GitHub Actions, 2021-07-22). We'll now run the "t9810 t9816" and tests on OSX. We didn't before, as we'd carried the Travis exclusion of them forward from522354d70f
(Add Travis CI support, 2015-11-27). Let's hope whatever issue there was with them was either Travis specific, or fixed since then (I'm not sure). The "apt-add-repository" invocation (which we were doing in GitHub CI) isn't needed, it was another Travis-only case that was carried forward into more general code. See0f0c51181d
(travis-ci: install packages in 'ci/install-dependencies.sh', 2018-11-01). Remove the "linux-gcc-4.8" job added infb9d7431cf
(travis-ci: build with GCC 4.8 as well, 2019-07-18), it only ran in Travis CI. 1. https://travis-ci.org/github/git/git/builds Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
![avarab@gmail.com](/assets/img/avatar_default.png)
![Junio C Hamano](/assets/img/avatar_default.png)
7 changed files with 7 additions and 118 deletions
@ -1,60 +0,0 @@
@@ -1,60 +0,0 @@
|
||||
language: c |
||||
|
||||
cache: |
||||
directories: |
||||
- $HOME/travis-cache |
||||
|
||||
os: |
||||
- linux |
||||
- osx |
||||
|
||||
osx_image: xcode10.1 |
||||
|
||||
compiler: |
||||
- clang |
||||
- gcc |
||||
|
||||
matrix: |
||||
include: |
||||
- env: jobname=linux-gcc-default |
||||
os: linux |
||||
compiler: |
||||
addons: |
||||
before_install: |
||||
- env: jobname=linux-gcc-4.8 |
||||
os: linux |
||||
dist: trusty |
||||
compiler: |
||||
- env: jobname=Linux32 |
||||
os: linux |
||||
compiler: |
||||
addons: |
||||
services: |
||||
- docker |
||||
before_install: |
||||
script: ci/run-docker.sh |
||||
- env: jobname=linux-musl |
||||
os: linux |
||||
compiler: |
||||
addons: |
||||
services: |
||||
- docker |
||||
before_install: |
||||
script: ci/run-docker.sh |
||||
- env: jobname=StaticAnalysis |
||||
os: linux |
||||
compiler: |
||||
script: ci/run-static-analysis.sh |
||||
after_failure: |
||||
- env: jobname=Documentation |
||||
os: linux |
||||
compiler: |
||||
script: ci/test-documentation.sh |
||||
after_failure: |
||||
|
||||
before_install: ci/install-dependencies.sh |
||||
script: ci/run-build-and-tests.sh |
||||
after_failure: ci/print-test-failures.sh |
||||
|
||||
notifications: |
||||
email: false |
Loading…
Reference in new issue