Skip to content

Commit 7b48941

Browse files
authored
Fix make command
1 parent a9b5fb8 commit 7b48941

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ node('digitalocean && ubuntu-16.04 && 16gb && clean') {
7979
'ANDROID_JACK_VM_ARGS=-Xmx4g -Dfile.encoding=UTF-8 -XX:+TieredCompilation'
8080
]) {
8181
stage 'Regular'
82-
retry(4) {
82+
retry(2) {
8383
sh '''#!/bin/bash
8484
source build/envsetup.sh
8585
lunch "${TARGET}"
@@ -108,7 +108,7 @@ node('digitalocean && ubuntu-16.04 && 16gb && clean') {
108108
sh '''#!/bin/bash
109109
source build/envsetup.sh
110110
lunch "${TARGET}"
111-
make -j
111+
make -j$(($(nproc)+1))
112112
'''
113113
}
114114

0 commit comments

Comments
 (0)