Merge pull request #5211 from RyanGlScott/T5164
[cabal.git] / .travis.yml
blob31df066aba2a3750997806471f48a0980eb130b6
1 # NB: don't set `language: haskell` here
2 # We specify language: c, so it doesn't default to e.g. ruby
3 language: c
5 dist: trusty
7 sudo: false
9 # Remember to add release branches
10 # we whitelist branches, as we don't really need to build dev-branches.
11 branches:
12   only:
13     - master
14     - "2.2"
15     - "2.0"
16     - "1.24"
17     - "1.22"
18     - "1.20"
19     - "1.18"
21 # The following enables several GHC versions to be tested; often it's enough to
22 # test only against the last release in a major GHC version. Feel free to omit
23 # lines listings versions you don't need/want testing for.
25 # NB: If you test the same GHC version/OS combo multiple times with
26 # SCRIPT=script (e.g., see PARSEC=YES below), you MUST supply a
27 # TAGSUFFIX to help travis/upload.sh disambiguate the matrix entry.
28 matrix:
29   include:
30    - env: GHCVER=8.2.2 SCRIPT=meta BUILDER=none
31      os: linux
32      sudo: required
33    # These don't have -dyn/-prof whitelisted yet, so we have to
34    # do the old-style installation
35    # NB: TEST_OTHER_VERSIONS doesn't work with USE_GOLD=YES.
36    - env: GHCVER=7.4.2 SCRIPT=script CABAL_LIB_ONLY=YES TEST_OTHER_VERSIONS=YES
37      os: linux
38      sudo: required
39    - env: GHCVER=7.6.3 SCRIPT=script CABAL_LIB_ONLY=YES TEST_OTHER_VERSIONS=YES
40      os: linux
41      sudo: required
42    - env: GHCVER=7.8.4 SCRIPT=script CABAL_LIB_ONLY=YES TEST_OTHER_VERSIONS=YES
43      os: linux
44      sudo: required
45    # Ugh, we'd like to drop 'sudo: required' and use the
46    # apt plugin for the next two
47    # but the GCE instance we get has more memory, which makes
48    # a big difference
49    - env: GHCVER=7.10.3 SCRIPT=script USE_GOLD=YES
50      os: linux
51      sudo: required
52    - env: GHCVER=8.0.2 SCRIPT=script DEPLOY_DOCS=YES USE_GOLD=YES TEST_SOLVER_BENCHMARKS=YES
53      sudo: required
54      os: linux
56    - env: GHCVER=8.2.2 SCRIPT=solver-debug-flags USE_GOLD=YES
57      sudo: required
58      os: linux
59    - env: GHCVER=8.2.2 SCRIPT=script DEBUG_EXPENSIVE_ASSERTIONS=YES TAGSUFFIX="-fdebug-expensive-assertions" USE_GOLD=YES
60      os: linux
61      sudo: required
62    - env: GHCVER=8.0.2 SCRIPT=bootstrap USE_GOLD=YES
63      sudo: required
64      os: linux
65    - env: GHCVER=8.2.2 SCRIPT=bootstrap USE_GOLD=YES
66      sudo: required
67      os: linux
68    - env: GHCVER=8.2.2 SCRIPT=script
69      os: linux
70      sudo: required
72    # We axed GHC 7.6 and earlier because it's not worth the trouble to
73    # make older GHC work with clang's cpp.  See
74    # https://ghc.haskell.org/trac/ghc/ticket/8493
75    - env: GHCVER=7.8.4 SCRIPT=script CABAL_LIB_ONLY=YES
76      os: osx
77      # Keep this synced with travis/upload.sh
78      osx_image: xcode6.4 # We need 10.10
80    # TODO: We might want to specify OSX version
81    # https://docs.travis-ci.com/user/osx-ci-environment/#OS-X-Version
82    - env: GHCVER=7.10.3 SCRIPT=script
83      os: osx
84    - env: GHCVER=8.0.2 SCRIPT=script
85      os: osx
86    - env: GHCVER=8.0.2 SCRIPT=bootstrap
87      os: osx
89    - env: GHCVER=via-stack SCRIPT=stack STACK_CONFIG=stack.yaml
90      os: linux
92    # See https://github.com/haskell/cabal/pull/4667#issuecomment-321036564
93    # for why failures are allowed.
94   allow_failures:
95    - env: GHCVER=via-stack SCRIPT=stack STACK_CONFIG=stack.yaml
97  # TODO add PARSEC_BUNDLED=YES when it's so
98  # It seems pointless to run head if we're going to ignore the results.
99  #- GHCVER=head
101 # Note: the distinction between `before_install` and `install` is not important.
102 before_install:
103  - export PATH=/opt/ghc/$GHCVER/bin:$PATH
104  - export PATH=$HOME/.ghc-install/$GHCVER/bin:$PATH
105  - export PATH=$HOME/bin:$PATH
106  - export PATH=$HOME/.cabal/bin:$PATH
107  - export PATH=$HOME/.local/bin:$PATH
108  - export PATH=/opt/cabal/2.0/bin:$PATH
109  - export PATH=/opt/alex/3.1.7/bin:$PATH
110  - if [ "$USE_GOLD" = "YES" ]; then sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20; fi
111  - if [ "$USE_GOLD" = "YES" ]; then sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10; fi
112  - ld -v
113  - ./travis-install.sh
115 install:
116  # We intentionally do not install anything before trying to build Cabal because
117  # it should build with each supported GHC version out-of-the-box.
119 # Here starts the actual work to be performed for the package under test; any
120 # command which exits with a non-zero exit code causes the build to fail. Using
121 # ./dist/setup/setup here instead of cabal-install to avoid breakage when the
122 # build config format changed.
123 script:
124  - rm -rf dist-newstyle
125  - ./travis-${SCRIPT}.sh -j2
127 cache:
128  directories:
129  - $HOME/.cabal/packages
130  - $HOME/.cabal/store
131  - $HOME/.cabal/bin
133  - $HOME/.stack/bin
134  - $HOME/.stack/precompiled
135  - $HOME/.stack/programs
136  - $HOME/.stack/setup-exe-cache
137  - $HOME/.stack/snapshots
139 # We remove the index because it churns quite a bit and we don't want
140 # to pay the cost of repeatedly caching it even though we don't care
141 # about most changing packages.
142 before_cache:
143  - rm -fv $HOME/.cabal/packages/hackage.haskell.org/build-reports.log
144  - rm -fv $HOME/.cabal/packages/hackage.haskell.org/00-index*
145  - rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index*
146  - rm -fv $HOME/.cabal/packages/hackage.haskell.org/*.json
147  # avoid clashing or stale locks being cached
148  - rm -rfv $HOME/.cabal/packages/hackage.haskell.org/hackage-security-lock
150 # Deploy Haddocks to the haskell/cabal-website repo.
151 after_success:
152  # Set up deployment to the haskell/cabal-website repo.
153  # NB: these commands MUST be in .travis.yml, otherwise the secret key can be
154  # leaked! See https://github.com/travis-ci/travis.rb/issues/423.
155  # umask to get the permissions to be 600.
156  - if [ "x$TRAVIS_REPO_SLUG" = "xhaskell/cabal" -a "x$TRAVIS_PULL_REQUEST" = "xfalse" -a "x$TRAVIS_BRANCH" = "xmaster" -a "x$DEPLOY_DOCS" = "xYES"  ]; then (umask 177 && openssl aes-256-cbc -K $encrypted_edaf6551664d_key -iv $encrypted_edaf6551664d_iv -in id_rsa_cabal_website.aes256.enc -out ~/.ssh/id_rsa -d); fi
157  - ./travis-deploy.sh
159 notifications:
160   irc:
161     channels:
162       - "chat.freenode.net##haskell-cabal"
163   slack: haskell-cabal:sCq6GLfy9N8MJrInosg871n4