forked from vmware/differential-datalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
107 lines (93 loc) · 3.34 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# This is the simple Travis configuration, which is intended for use
# on applications which do not require cross-platform and
# multiple-GHC-version support. For more information and other
# options, see:
#
# https://docs.haskellstack.org/en/stable/travis_ci/
#
# Copy these contents into the root directory of your Github project in a file
# named .travis.yml
# Use new container infrastructure to enable caching
sudo: required
dist: trusty
jdk: oraclejdk8
osx_image: xcode9.3
# 'gitlab-ci' is meant for testing GitLab CI integration and not build
# by Travis.
# Branches starting with 'pull-request' are used by our pull-request
# "mirroring" infrastructure and can safely be ignored by Travis as
# well.
branches:
except:
- gitlab-ci
- /^pull-request\/.*/
# Do not choose a language; we provide our own build tools.
language: rust
rust:
# Test with latest Rust version to get some mileage on it. Our GitLab
# pipeline tests with the minimum version we require.
- stable
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.ghc
- $HOME/.cabal
- $HOME/.stack
- $HOME/.cargo
- ./flatbuffers
- .stack-work
env:
- TOOL=stack TEST_SUITE='-p tutorial' BUILD_BINARY=1
- TOOL=run_souffle_tests
# - TOOL=stack TEST_SUITE='-p redist' JAVA=1
# - TOOL=stack TEST_SUITE='-p span_uuid'
# - TOOL=stack TEST_SUITE='-p souffle0'
- TOOL=stack TEST_SUITE='-p simple'
# - TOOL=stack TEST_SUITE='-p path'
# - TOOL=stack TEST_SUITE='-p ovn'
# - TOOL=stack TEST_SUITE='-p modules'
#addons: {apt: {packages: [ghc-8.2.2], sources: [hvr-ghc]}}
os:
- osx
- linux
matrix:
fast_finish: true
# Ensure necessary system libraries are present
addons:
apt:
packages:
- libgmp-dev
- subversion
before_install:
- pip install --user parglare==0.10.0
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- ./tools/install-stack.sh
- ./tools/install-flatbuf.sh
- export CLASSPATH=$CLASSPATH:`pwd`/flatbuffers/java
# Travis does not set JAVA_HOME on MacOS
- if [ `uname -s` = Darwin ]; then export JAVA_HOME=`/usr/libexec/java_home`; fi
- if [ `uname -s` = Darwin -a x${TOOL} = xrun_souffle_tests ]; then brew install subversion; fi
install:
# Build dependencies
- stack --no-terminal --install-ghc test --only-dependencies
script:
# Build the package, its tests, and its docs and run the tests
#- DDLOG_TEST_PROGRESS=1 stack --no-terminal test --haddock --no-haddock-deps
#- DDLOG_TEST_PROGRESS=1 stack --no-terminal test --ta "$TEST_SUITE" --haddock --no-haddock-deps
- if [ x${TOOL} = xstack ]; then DDLOG_TEST_PROGRESS=1 stack --no-terminal test --ta "$TEST_SUITE"; fi
- if [ x${TOOL} = xrun_souffle_tests ]; then cd test && travis_wait 30 ./run-souffle-tests.py ackermann andersen bigrams cba_expr_value centroids clique cliquer comp-parametrized-inherit comp-parametrized-multilvl degree dfa dfa_min disconnected dominance double_tree earley equal factoring family fib; fi
- if [ x${JAVA} = x1 ]; then stack install && cd java/test_flatbuf && ./run.sh; fi
before_deploy:
- export DIST_NAME=ddlog-$TRAVIS_TAG-$(date +'%Y%m%d%H%M%S')-$TRAVIS_OS_NAME
- ./build_distro.sh
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file: "$DIST_NAME.tar.gz"
skip_cleanup: true
draft: true
on:
tags: true
condition: $BUILD_BINARY = 1