forked from FireEmblemUniverse/fireemblem8u
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuddy.yml
30 lines (30 loc) · 930 Bytes
/
buddy.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
- pipeline: "Build"
trigger_mode: "ON_EVERY_PUSH"
ref_name: "master"
ref_type: "BRANCH"
trigger_condition: "ALWAYS"
actions:
- action: "Execute: PATH=`pwd`/tools/binutils/bin:$PATH make"
type: "BUILD"
working_directory: "/buddy/fireemblem8u"
docker_image_name: "library/gcc"
docker_image_tag: "7"
execute_commands:
- "if [ ! -d \"agbcc-new_layout_with_libs\" ];"
- "then"
- "\tcurl -L https://codeload.github.com/luckytyphlosion/agbcc/zip/new_layout_with_libs -o agbcc.zip"
- "\tunzip agbcc.zip"
- "fi"
- "if [ ! -d \"tools/agbcc\" ]"
- "then"
- "\tcd agbcc-new_layout_with_libs/"
- "\tmake"
- "\tmake install prefix=../"
- "\tcd ../"
- "fi"
- "./build_tools.sh"
- "PATH=`pwd`/tools/binutils/bin:$PATH CPP=cpp make"
- "scripts/calcrom.sh"
mount_filesystem_path: "/buddy/fireemblem8u"
shell: "BASH"
trigger_condition: "ALWAYS"