forked from mysociety/alaveteli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
67 lines (67 loc) · 2.51 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
dist: xenial
sudo: required
language: ruby
branches:
only:
- master
- develop
rvm:
- 2.3 # Latest official 2.3.x
- 2.4 # Latest official 2.4.x
- 2.5 # Latest official 2.5.x
- 2.6 # Latest official 2.6.x
- 2.7 # Latest official 2.7.x
gemfile:
- Gemfile
matrix:
fast_finish: true
include:
- if: type != pull_request
rvm: 2.3.3 # Debian Stretch
- if: type != pull_request
rvm: ruby-head
- if: head_branch =~ /^rails/
rvm: 2.6
gemfile: Gemfile.rails_next
allow_failures:
- rvm: 2.7
- rvm: ruby-head
- gemfile: Gemfile.rails_next
services:
- postgresql
cache:
- bundler
before_install:
- sudo add-apt-repository --remove 'http://us-central1.gce.archive.ubuntu.com/ubuntu/ main restricted'
- sudo add-apt-repository --remove 'http://us-central1.gce.archive.ubuntu.com/ubuntu/ universe'
- sudo add-apt-repository --remove 'http://us-central1.gce.archive.ubuntu.com/ubuntu/ multiverse'
- sudo add-apt-repository http://archive.ubuntu.com/ubuntu/
- sudo add-apt-repository 'http://archive.ubuntu.com/ubuntu/ universe'
- sudo add-apt-repository 'http://archive.ubuntu.com/ubuntu/ multiverse'
- sudo apt-get -qq update
- sudo locale-gen --no-archive en_GB
- sudo locale-gen --no-archive en_GB.UTF-8
- sudo update-locale
- git submodule update --init --recursive
- psql -c "create database template_utf8 template template0 encoding 'UTF-8';" -U postgres
- psql -c "update pg_database set datistemplate=true where datname='template_utf8';" -U postgres
- psql -c "create database foi_test template template_utf8;" -U postgres
- cp config/database.yml-test config/database.yml
- cp config/general.yml-example config/general.yml
- sudo apt-get update
- export DEBIAN_FRONTEND=noninteractive
- sudo apt-get -y install exim4-daemon-light
- sudo apt-get -y install `cut -d " " -f 1 config/packages | egrep -v "(^#|wkhtml|bundler|^ruby$|^ruby1.9.1$|^rubygems$|^rake)"`
- RAILS_ENV=test ./script/rails-post-deploy
- psql -c 'CREATE COLLATION "en_GB" (LOCALE = "en_GB.utf8");' -U postgres foi_test
- psql -c 'CREATE COLLATION "en_GB.utf8" (LOCALE = "en_GB.utf8");' -U postgres foi_test
- psql -c 'CREATE COLLATION "en" (LOCALE = "en_GB.utf8");' -U postgres foi_test
- RAILS_ENV=test ./script/update-xapian-index
install: echo 'Bundle installed through script/rails-post-deploy'
notifications:
email:
recipients:
addons:
code_climate:
repo_token: ee19b27266ded8ab2d2c4e65c66a79fc58b11ff9c4bd84673ae21b1a565f3e6d