From 5f0d1b35747cb25e540bb803e5a703a0a5c3e4ca Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Wed, 11 Mar 2020 17:59:25 +0200 Subject: [PATCH] Drop Travis for master. Resolves #6500. --- .travis.yml | 180 ---------------------------------------------------- 1 file changed, 180 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 309eb03ce90..00000000000 --- a/.travis.yml +++ /dev/null @@ -1,180 +0,0 @@ -# NB: don't set `language: haskell` here -# We specify language: c, so it doesn't default to e.g. ruby -language: c - -dist: xenial - -# This sets the default config for each job to use full VMs. -# The VMs have 2 cores and 8 gigs of ram. Larger VMs are also available. -sudo: true - -# We whitelist branches, as we don't really need to build dev-branches. -# Except if those branches are in a fork. -# Remember to add release branches, both here and to appveyor.yml. -if: branch IN (master, 3.0, 2.4, 2.2, 2.0, 1.24, 1.22, 1.20, 1.18) OR repo != haskell/cabal - -# The following enables several GHC versions to be tested; often it's enough to -# test only against the last release in a major GHC version. Feel free to omit -# lines listings versions you don't need/want testing for. -# -# NB: If you test the same GHC version/OS combo multiple times with -# SCRIPT=script (e.g., see PARSEC=YES below), you MUST supply a -# TAGSUFFIX to help travis/upload.sh disambiguate the matrix entry. -matrix: - include: - - env: GHCVER=8.4.4 SCRIPT=meta BUILDER=none - os: linux - sudo: required - # These don't have -dyn/-prof whitelisted yet, so we have to - # do the old-style installation - # NB: TEST_OTHER_VERSIONS doesn't work with USE_GOLD=YES. - - env: GHCVER=7.6.3 SCRIPT=script CABAL_LIB_ONLY=YES TEST_OTHER_VERSIONS=YES - os: linux - sudo: required - - env: GHCVER=7.8.4 SCRIPT=script CABAL_LIB_ONLY=YES TEST_OTHER_VERSIONS=YES - os: linux - sudo: required - # Ugh, we'd like to drop 'sudo: required' and use the - # apt plugin for the next two - # but the GCE instance we get has more memory, which makes - # a big difference - - env: GHCVER=7.10.3 SCRIPT=script USE_GOLD=YES - os: linux - sudo: required - - env: GHCVER=8.0.2 SCRIPT=script USE_GOLD=YES TEST_SOLVER_BENCHMARKS=YES - sudo: required - os: linux - - env: GHCVER=8.2.2 SCRIPT=script USE_GOLD=YES - os: linux - sudo: required - - env: GHCVER=8.4.4 SCRIPT=script USE_GOLD=YES DEPLOY_DOCS=YES - os: linux - sudo: required - - env: GHCVER=8.6.5 SCRIPT=script USE_GOLD=YES - os: linux - sudo: required - - env: GHCVER=8.8.1 SCRIPT=script USE_GOLD=YES - os: linux - sudo: required - #- env: GHCVER=8.8.1 SCRIPT=script USE_GOLD=YES - # os: linux - # sudo: required - - - env: GHCVER=8.4.4 SCRIPT=solver-debug-flags USE_GOLD=YES - sudo: required - os: linux - - env: GHCVER=8.4.4 SCRIPT=script DEBUG_EXPENSIVE_ASSERTIONS=YES TAGSUFFIX="-fdebug-expensive-assertions" USE_GOLD=YES - os: linux - sudo: required - - env: GHCVER=8.0.2 SCRIPT=bootstrap USE_GOLD=YES - sudo: required - os: linux - - env: GHCVER=8.4.4 SCRIPT=bootstrap USE_GOLD=YES - sudo: required - os: linux - - # We axed GHC 7.6 and earlier because it's not worth the trouble to - # make older GHC work with clang's cpp. See - # https://ghc.haskell.org/trac/ghc/ticket/8493 - - env: GHCVER=7.8.4 SCRIPT=script CABAL_LIB_ONLY=YES - os: osx - # Keep this synced with travis/upload.sh - osx_image: xcode6.4 # We need 10.10 - - # TODO: We might want to specify OSX version - # https://docs.travis-ci.com/user/osx-ci-environment/#OS-X-Version - - env: GHCVER=7.10.3 SCRIPT=script - os: osx - - env: GHCVER=8.0.2 SCRIPT=script - os: osx - - env: GHCVER=8.0.2 SCRIPT=bootstrap - os: osx - - # It's been long known that CI with - # Stack does not work so it's disabled until further notice - # to reduce latency and avoid wasting CI slots for no reason. - # - #- env: GHCVER=via-stack SCRIPT=stack STACK_CONFIG=stack.yaml - # os: linux - # - # See https://github.com/haskell/cabal/pull/4667#issuecomment-321036564 - # for why failures are allowed. - # - # OSX jobs timeout often, so they can fail - allow_failures: - # - env: GHCVER=via-stack SCRIPT=stack STACK_CONFIG=stack.yaml - - env: GHCVER=7.10.3 SCRIPT=script - os: osx - - env: GHCVER=8.0.2 SCRIPT=script - os: osx - - # TODO add PARSEC_BUNDLED=YES when it's so - # It seems pointless to run head if we're going to ignore the results. - #- GHCVER=head - - # Marks the build result as soon as all the non-"allow_failures" jobs finish, based on their results - # while the remaining `allow_failures` jobs continue to run. - fast_finish: true - -# Note: the distinction between `before_install` and `install` is not important. -before_install: - - export PATH=/opt/ghc/$GHCVER/bin:$PATH - - export PATH=$HOME/.ghc-install/$GHCVER/bin:$PATH - - export PATH=$HOME/bin:$PATH - - export PATH=$HOME/.cabal/bin:$PATH - - export PATH=$HOME/.local/bin:$PATH - - export PATH=/opt/cabal/3.0/bin:$PATH - - if [ "$USE_GOLD" = "YES" ]; then sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20; fi - - if [ "$USE_GOLD" = "YES" ]; then sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10; fi - - ld -v - - ./travis-install.sh - -install: - # We intentionally do not install anything before trying to build Cabal because - # it should build with each supported GHC version out-of-the-box. - -# Here starts the actual work to be performed for the package under test; any -# command which exits with a non-zero exit code causes the build to fail. Using -# ./dist/setup/setup here instead of cabal-install to avoid breakage when the -# build config format changed. -script: - - rm -rf dist-newstyle - - ./travis-${SCRIPT}.sh -j2 - -cache: - directories: - - $HOME/.cabal/packages - - $HOME/.cabal/store - - $HOME/.cabal/bin - - - $HOME/.stack/bin - - $HOME/.stack/precompiled - - $HOME/.stack/programs - - $HOME/.stack/setup-exe-cache - - $HOME/.stack/snapshots - -# We remove the index because it churns quite a bit and we don't want -# to pay the cost of repeatedly caching it even though we don't care -# about most changing packages. -before_cache: - - rm -fv $HOME/.cabal/packages/hackage.haskell.org/build-reports.log - - rm -fv $HOME/.cabal/packages/hackage.haskell.org/00-index* - - rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index* - - rm -fv $HOME/.cabal/packages/hackage.haskell.org/*.json - # avoid clashing or stale locks being cached - - rm -rfv $HOME/.cabal/packages/hackage.haskell.org/hackage-security-lock - -# Deploy Haddocks to the haskell/cabal-website repo. -after_success: - # Set up deployment to the haskell/cabal-website repo. - # NB: these commands MUST be in .travis.yml, otherwise the secret key can be - # leaked! See https://github.com/travis-ci/travis.rb/issues/423. - # umask to get the permissions to be 600. - - 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 - - ./travis-deploy.sh - -notifications: - irc: - if: repo = haskell/cabal - channels: - - "chat.freenode.net##haskell-cabal"