forked from george-hopkins/opentom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
30 lines (28 loc) · 819 Bytes
/
circle.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
general:
artifacts:
- "logs"
- "applications/logs"
- "target/opentom.tar.gz"
- "target/opentom-extra.tar.gz"
dependencies:
override:
- sudo apt-get install -y subversion chrpath fluid imagemagick librsvg2-bin xsltproc
test:
pre:
- mkdir -p target/opentom target/opentom-extra
override:
- sed -i '/^export ROOT=/d' get_cross_env.sh
- >
(
export ROOT=`pwd` &&
source get_cross_env.sh &&
make base &&
cp build/ttsystem target/opentom &&
cp -r opentom_dist target/opentom/opentom &&
make extra &&
cp build/ttsystem target/opentom-extra &&
cp -r opentom_dist target/opentom-extra/opentom
)
post:
- tar -C target -cvzf target/opentom.tar.gz opentom
- tar -C target -cvzf target/opentom-extra.tar.gz opentom-extra