bootstrap.sh: Bump HTTP version.
[cabal.git] / travis-install.sh
blobf858bc829d02bebaa98720e29d5a2066338b3fdc
1 #!/bin/sh
2 set -ex
4 . ./travis-common.sh
6 if [ "$GHCVER" = "none" ]; then
7 travis_retry sudo add-apt-repository -y ppa:hvr/ghc
8 travis_retry sudo apt-get update
9 travis_retry sudo apt-get install --force-yes ghc-$GHCVER
12 if [ -z ${STACK_CONFIG+x} ]; then
13 if [ "$TRAVIS_OS_NAME" = "linux" ]; then
14 travis_retry sudo add-apt-repository -y ppa:hvr/ghc
15 travis_retry sudo apt-get update
16 travis_retry sudo apt-get install --force-yes cabal-install-head cabal-install-2.0 happy-1.19.5 alex-3.1.7 ghc-$GHCVER-prof ghc-$GHCVER-dyn
17 if [ "x$TEST_OTHER_VERSIONS" = "xYES" ]; then travis_retry sudo apt-get install --force-yes ghc-7.0.4-prof ghc-7.0.4-dyn ghc-7.2.2-prof ghc-7.2.2-dyn ghc-head-prof ghc-head-dyn; fi
19 elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
21 case $GHCVER in
22 8.0.2)
23 GHCURL=http://downloads.haskell.org/~ghc/8.0.2/ghc-8.0.2-x86_64-apple-darwin.tar.xz;
24 GHCXZ=YES
26 8.0.1)
27 GHCURL=http://downloads.haskell.org/~ghc/8.0.1/ghc-8.0.1-x86_64-apple-darwin.tar.xz;
28 GHCXZ=YES
30 7.10.3)
31 GHCURL=http://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3b-x86_64-apple-darwin.tar.xz
32 GHCXZ=YES
34 7.8.4)
35 GHCURL=https://www.haskell.org/ghc/dist/7.8.4/ghc-7.8.4-x86_64-apple-darwin.tar.xz
36 GHCXZ=YES
38 7.6.3)
39 GHCURL=https://www.haskell.org/ghc/dist/7.6.3/ghc-7.6.3-x86_64-apple-darwin.tar.bz2
41 7.4.2)
42 GHCURL=https://www.haskell.org/ghc/dist/7.4.2/ghc-7.4.2-x86_64-apple-darwin.tar.bz2
45 echo "Unknown GHC: $GHCVER"
46 false
48 esac
50 travis_retry curl -OL $GHCURL
51 if [ "$GHCXZ" = "YES" ]; then
52 tar -xJf ghc-*.tar.*;
53 else
54 tar -xjf ghc-*.tar.*;
57 cd ghc-*;
58 ./configure --prefix=$HOME/.ghc-install/$GHCVER
59 make install;
60 cd ..;
62 mkdir "${HOME}/bin"
63 travis_retry curl -L https://www.haskell.org/cabal/release/cabal-install-2.0.0.0/cabal-install-2.0.0.0-x86_64-apple-darwin-sierra.tar.xz | tar xJO > "${HOME}/bin/cabal"
64 chmod a+x "${HOME}/bin/cabal"
65 "${HOME}/bin/cabal" --version
67 else
68 echo "Not linux or osx: $TRAVIS_OS_NAME"
69 false
72 else # Stack-based builds
73 mkdir -p ~/.local/bin
74 travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 \
75 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
76 ~/.local/bin/stack --version
77 ~/.local/bin/stack setup --stack-yaml "$STACK_CONFIG"
81 git version