mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-23 05:32:21 +03:00
27 lines
495 B
YAML
27 lines
495 B
YAML
language: haskell
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- env: CABALVER=head GHCVER=head
|
|
|
|
env:
|
|
- CABALVER=1.22 GHCVER=7.10.1
|
|
- CABALVER=1.24 GHCVER=8.0.1
|
|
- CABALVER=1.24 GHCVER=8.0.2
|
|
- CABALVER=head GHCVER=head
|
|
|
|
install:
|
|
- ./ci/travis_ci_install
|
|
|
|
script:
|
|
- ./ci/travis_ci_script
|
|
|
|
before_install:
|
|
- sudo add-apt-repository -y ppa:hvr/ghc
|
|
- sudo apt-get update
|
|
- sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER
|
|
- export PATH=/opt/ghc/$GHCVER/bin:$PATH
|