-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuddy.yml
More file actions
29 lines (29 loc) · 791 Bytes
/
Copy pathbuddy.yml
File metadata and controls
29 lines (29 loc) · 791 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
- pipeline: "Build and Test"
on: "EVENT"
events:
- type: "PUSH"
refs:
- "refs/heads/*"
priority: "NORMAL"
fail_on_prepare_env_warning: true
actions:
- action: "Execute: ./bin/tests/tests"
type: "BUILD"
working_directory: "/buddy/data-compression"
docker_image_name: "library/gcc"
docker_image_tag: "latest"
execute_commands:
- "if [ -d ./build ]; then"
- "\trm -rf ./build"
- "fi"
- "mkdir build && cd build"
- "cmake -DCMAKE_BUILD_TYPE=Release .."
- "cmake --build . --config -j8"
- "./bin/tests/tests"
setup_commands:
- "apt-get update --fix-missing && apt-get -y install cmake"
volume_mappings:
- "/:/buddy/data-compression"
cache_base_image: true
shell: "BASH"
execute_every_command: true