forked from sesuncedu/archivesspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (31 loc) · 1014 Bytes
/
.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
# TODO: Testing with multiple database backends. By default,
# ArchivesSpace will run these tests against the embedded Derby database
# (see config/config-distribution.rb). To investigate this see
# http://about.travis-ci.org/docs/user/database-setup/
language: ruby
rvm:
# The bootstrap script installs jruby, so this setting does not matter.
- jruby-19mode
jdk:
- openjdk7
- oraclejdk7
- openjdk6
before_script:
# http://about.travis-ci.org/docs/user/gui-and-headless-browsers/
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3
branches:
except:
- gh-pages
script:
- build/run bootstrap
- build/run backend:test
- build/run backend:integration
# - build/run common:test # https://github.com/hudmol/archivesspace/commit/193fe9a3990da74e37e98140c9eaa264ec801643#L0R106
- build/run dist
- build/run selenium:test
notifications:
irc: "irc.freenode.org#archivesspace"
# don't send email for now, until we know who we want to receive it
email: false