forked from hpi-swa-teaching/Algernon-Launcher-old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (31 loc) · 681 Bytes
/
.travis.yml
File metadata and controls
36 lines (31 loc) · 681 Bytes
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
language: erlang
sudo: false
env:
global:
- BASELINE=Algernon
matrix:
# - SMALLTALK="SqueakTrunk"
- SMALLTALK="Squeak4.6"
# - SMALLTALK="Squeak4.5"
addons:
apt:
packages:
# 32-bit VM
- libc6:i386
# UUIDPlugin
- libuuid1:i386
install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget -q -O filetreeCI.zip https://github.com/fniephaus/filetreeCI/archive/master.zip
- unzip -q filetreeCI.zip
- cd filetreeCI-*
- export FILETREE_CI_HOME="$(pwd)"
script: $FILETREE_CI_HOME/run.sh
notifications:
webhooks:
urls:
- http://isqueakbot.appspot.com
on_success: always
on_failure: always
on_start: never