-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwercker.yml
More file actions
36 lines (30 loc) · 786 Bytes
/
wercker.yml
File metadata and controls
36 lines (30 loc) · 786 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
30
31
32
33
34
35
36
box: manuelvs/cppdevelopment:alpine
dev:
steps:
- script:
name: Clean build directory
code: rm -rf build/*
- internal/shell:
cmd: sh
after-steps:
- script:
name: Fix permission of generated files
code: chown -R 1000:1000 .
disable-sync: true
test:
steps:
- script:
name: Clean directory
code: rm -rf build
- script:
name: Build package
code: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j 8
- script:
name: Execute tests
code: |
cd build
make test