bloodhound/.travis.yml

51 lines
2.1 KiB
YAML
Raw Normal View History

2015-10-29 03:10:54 +03:00
sudo: false
2017-07-13 08:34:52 +03:00
language: generic
2014-05-03 09:31:43 +04:00
2015-10-29 03:10:54 +03:00
addons:
apt:
packages:
- libgmp-dev
- oracle-java8-installer
2014-05-03 09:31:43 +04:00
env:
global:
- JAVA_HOME=/usr/lib/jvm/java-8-oracle
matrix:
2017-01-30 21:06:03 +03:00
- GHCVER=7.8 ESVER=1.3.6 STACK_YAML=stack-7.8.yaml ESFLAG=ES1 DLINK=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch
- GHCVER=7.8 ESVER=1.4.1 STACK_YAML=stack-7.8.yaml ESFLAG=ES1 DLINK=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch
- GHCVER=7.10 ESVER=1.5.2 STACK_YAML=stack-7.10.yaml ESFLAG=ES1 DLINK=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch
- GHCVER=7.10 ESVER=1.6.0 STACK_YAML=stack-7.10.yaml ESFLAG=ES1 DLINK=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch
2017-08-04 06:35:32 +03:00
- GHCVER=7.10 ESVER=1.7.6 STACK_YAML=stack-7.10.yaml ESFLAG=ES1 DLINK=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch
- GHCVER=8.0 ESVER=1.7.6 STACK_YAML=stack.yaml ESFLAG=ES1 DLINK=https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch
2017-01-30 21:06:03 +03:00
- GHCVER=8.0 ESVER=5.0.2 STACK_YAML=stack.yaml ESFLAG=ES5 DLINK=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch ES_JAVA_OPTS="-Xms500m -Xmx750m"
2017-01-11 07:09:46 +03:00
2014-05-03 09:31:43 +04:00
install:
2015-10-29 03:10:54 +03:00
# stack
- mkdir -p ~/.local/bin
- travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v1.4.0/stack-1.4.0-linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
2015-10-29 03:10:54 +03:00
- export PATH=~/.local/bin:$PATH
- stack --no-terminal --version
2014-05-03 09:31:43 +04:00
2015-10-29 03:10:54 +03:00
# elasticsearch
- wget --no-check-certificate $DLINK-$ESVER.tar.gz
2015-10-29 03:17:11 +03:00
- tar xzf elasticsearch-$ESVER.tar.gz
# set up a repo for snapshot testing. Required in ES >= 1.6
- echo "path.repo = [\"/tmp\"]" >> ./elasticsearch-$ESVER/elasticsearch.yml
2015-10-29 03:19:40 +03:00
- ./elasticsearch-$ESVER/bin/elasticsearch &
2014-05-03 09:31:43 +04:00
script:
- stack setup --no-terminal
- stack update --no-terminal
- stack build -j2 --fast --no-terminal
- travis_wait 45 sleep 1800 &
- stack test --fast --no-terminal bloodhound:tests --test-arguments="--qc-max-success 500" --flag bloodhound:$ESFLAG
2014-05-03 09:31:43 +04:00
2015-10-29 22:54:07 +03:00
cache:
timeout: 2000
2015-10-29 22:54:07 +03:00
directories:
2017-07-13 08:34:52 +03:00
- $HOME/.cabal
- $HOME/.ghc
2015-10-29 22:54:07 +03:00
- $HOME/.stack
- .stack-work/
apt: true