mirror of
https://github.com/typeable/bloodhound.git
synced 2024-11-29 12:54:15 +03:00
51 lines
2.1 KiB
YAML
51 lines
2.1 KiB
YAML
sudo: false
|
|
language: generic
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libgmp-dev
|
|
- oracle-java8-installer
|
|
|
|
env:
|
|
global:
|
|
- JAVA_HOME=/usr/lib/jvm/java-8-oracle
|
|
matrix:
|
|
- 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
|
|
- 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
|
|
- 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"
|
|
|
|
install:
|
|
# 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'
|
|
- export PATH=~/.local/bin:$PATH
|
|
- stack --no-terminal --version
|
|
|
|
# elasticsearch
|
|
- wget --no-check-certificate $DLINK-$ESVER.tar.gz
|
|
- 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
|
|
- ./elasticsearch-$ESVER/bin/elasticsearch &
|
|
|
|
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
|
|
|
|
cache:
|
|
timeout: 2000
|
|
directories:
|
|
- $HOME/.cabal
|
|
- $HOME/.ghc
|
|
- $HOME/.stack
|
|
- .stack-work/
|
|
apt: true
|