File tree 3 files changed +11
-14
lines changed
3 files changed +11
-14
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,12 @@ jobs:
22
22
- stage : Build
23
23
name : " Build NRF Example Lock App"
24
24
env : TASK="build-nrf-example-lock-app"
25
- # Disabled given: https://github.com/project-chip/connectedhomeip/issues/385
26
- # - stage: Tests
27
- # name: "Unit & Functional Tests"
28
- # env: TASK="run-unit-and-functional-tests"
29
- # - stage: Tests
30
- # name: "Crypto Tests"
31
- # env: TASK="run-crypto-tests"
25
+ - stage : Tests
26
+ name : " Unit & Functional Tests"
27
+ env : TASK="run-unit-and-functional-tests"
28
+ - stage : Tests
29
+ name : " Crypto Tests"
30
+ env : TASK="run-crypto-tests"
32
31
- stage : Tests
33
32
name : " Setup Payload Tests"
34
33
env : TASK="run-setup-payload-tests"
38
37
- stage : Deployment Checks
39
38
name : " Distribution Check"
40
39
env : TASK="build-distribution-check"
41
-
Original file line number Diff line number Diff line change 87
87
{
88
88
"label" : " Configure" ,
89
89
"type" : " shell" ,
90
- "command" : " ./bootstrap && mkdir -p build/default && (cd build/default && ../../configure --enable-debug --enable-coverage)" ,
90
+ "command" : " mkdir -p build/default && (cd build/default && ../../bootstrap- configure --enable-debug --enable-coverage)" ,
91
91
"group" : " none" ,
92
92
"problemMatcher" : [
93
93
" $gcc"
96
96
{
97
97
"label" : " Bootstrap" ,
98
98
"type" : " shell" ,
99
- "command" : " if [[ ! -f build/default/config.status ]]; then ./bootstrap && mkdir -p build/default; (cd build/default && ../../configure --enable-debug --enable-coverage); else ./bootstrap -w make; fi" ,
99
+ "command" : " if [[ ! -f build/default/config.status ]]; then mkdir -p build/default; (cd build/default && ../../bootstrap- configure --enable-debug --enable-coverage); else ./bootstrap -w make; fi" ,
100
100
"group" : " none" ,
101
101
"problemMatcher" : [
102
102
" $gcc"
133
133
{
134
134
"label" : " Build nRF5 Lock App" ,
135
135
"type" : " shell" ,
136
- "command" : " cd examples/lock-app/nrf5 && make " ,
136
+ "command" : " make -C examples/lock-app/nrf5" ,
137
137
"group" : " none" ,
138
138
"dependsOn" : " Clean Tree" ,
139
139
"problemMatcher" : [
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ write_bash_command() {
16
16
}
17
17
18
18
write_bash_bootstrap () {
19
- write_bash_command ' if [[ ! -f build/default/config.status ]]; then ./bootstrap && mkdir -p build/default; (cd build/default && ../../configure --enable-debug --enable-coverage); else ./bootstrap -w make; fi'
19
+ write_bash_command ' if [[ ! -f build/default/config.status ]]; then mkdir -p build/default; (cd build/default && ../../bootstrap- configure --enable-debug --enable-coverage); else ./bootstrap -w make; fi'
20
20
}
21
21
22
22
docker_run_bash_command () {
@@ -36,8 +36,7 @@ case "$TASK" in
36
36
37
37
build-nrf-example-lock-app)
38
38
write_bash_template
39
- write_bash_bootstrap
40
- write_bash_command ' cd examples/lock-app/nrf5 && make'
39
+ write_bash_command ' make -C examples/lock-app/nrf5'
41
40
docker_run_bash_command
42
41
;;
43
42
You can’t perform that action at this time.
0 commit comments