forked from santa-dev/santa-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wercker.yml
43 lines (33 loc) · 993 Bytes
/
wercker.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
# Wercker configuration file for continuous integration build of SANTA on wercker.com.
#
# The purpose of continuous integration builds is to test the software after every change.
# This configration file can also be an good source of instructions for how to actually build
# Consider using wercker cache directory to store Ivy dependencies,
# -Dmaven.repo.local=${WERCKER_CACHE_DIR}
# docker box definition
box: java
# defining the dev pipeline
dev:
steps:
- script:
name: ant build
code: |
ant
# Build definition
build:
# The steps that will be executed on build
steps:
- install-packages:
packages: ant
# A step that executes `ant` command
- script:
name: build using ant
code: |
# ignore non-zero exit code from install-ivy
ant install-ivy && exit 0
ant
# A step that runs tests
- script:
name: test using ant
code: |
ant test