forked from haskell-beam/beam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
99 lines (84 loc) · 2.25 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
# 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: false
# Do not choose a language; we provide our own build tools.
language: generic
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
- $HOME/venv
# Ensure necessary system libraries are present
# addons:
# apt:
# sources:
# - sourceline: ppa:fkrull/deadsnakes-python2.7
# packages:
# - libgmp-dev
# - python2.7
# - pv
before_install:
# Download and unpack the stack executable
- ./ci/setup-stack
stages:
- test
- name: build-doc-examples
if: tag =~ ^docs OR branch = docs-master
- name: build-docs
if: tag =~ ^docs OR branch = docs-master
jobs:
include:
- stage: test
script: ./ci/test
addons:
postgresql: "9.6"
env: BEAM_RESOLVER=lts-10.3
- stage: test
script: ./ci/test
addons:
postgresql: "9.6"
env: BEAM_RESOLVER=lts-11.2
- stage: test
script: ./ci/test
addons:
postgresql: "9.6"
env: BEAM_RESOLVER=lts-12.0
- stage: build-doc-examples
addons:
postgresql: "9.6"
services:
- postgresql
before_install:
- ./ci/setup-stack
script: ./ci/build-docs-examples
env: BEAM_DOC_BACKEND=beam-postgres
- stage: build-doc-examples
before_install:
- ./ci/setup-stack
script: ./ci/build-docs-examples
env: BEAM_DOC_BACKEND=beam-sqlite
- stage: build-doc-examples
before_install:
- ./ci/setup-stack
services:
- mysql
script: ./ci/build-docs-examples
env: BEAM_DOC_BACKEND=beam-mysql
- stage: build-docs
script: ./ci/build-docs
env: BEAM_DOC_BACKENDS="beam-mysql beam-sqlite beam-postgres"
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_DOCS_TOKEN
local-dir: site
on:
branch: docs-master