-
Notifications
You must be signed in to change notification settings - Fork 5
/
.drone.yml
40 lines (40 loc) · 864 Bytes
/
.drone.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
clone:
depth: 1
path: repo
build:
image: yveshoppe/joomla-systemtests
commands:
- chmod a+x .drone/build.sh
- ./.drone/build.sh
- cd /tests/www
- export DISPLAY=:0
- Xvfb -screen 0 1024x768x24 -ac +extension GLX +render -noreset > /dev/null 2>&1 &
- sleep 4
- fluxbox &
- cp jorobo.dist.ini jorobo.ini
- vendor/bin/robo run:tests
notify:
email:
from: [email protected]
host: smtp.mandrillapp.com
port: 587
username: [email protected]
password: $$API_KEY
recipients:
when:
success: true
failure: true
change: true
irc:
prefix: build
nick: compodronebot
channel: compojoom
server:
host: chat.freenode.net
port: 6667
when:
success: true
failure: true
change: true