Staging
v0.5.1
https://github.com/git/git
Revision 5fa0f5238b0cd46cfe7f6fa76c3f526ea98148d9 authored by Junio C Hamano on 16 August 2019, 17:28:23 UTC, committed by Junio C Hamano on 16 August 2019, 17:28:23 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8e0fa0e
Raw File
Tip revision: 5fa0f5238b0cd46cfe7f6fa76c3f526ea98148d9 authored by Junio C Hamano on 16 August 2019, 17:28:23 UTC
Git 2.23
Tip revision: 5fa0f52
.travis.yml
language: c

cache:
  directories:
    - $HOME/travis-cache

os:
  - linux
  - osx

osx_image: xcode10.1

compiler:
  - clang
  - gcc

matrix:
  include:
    - env: jobname=GIT_TEST_GETTEXT_POISON
      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-linux32-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
back to top