File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 16
16
CTIMETEST : yes
17
17
BENCH : yes
18
18
ITERS : 2
19
+ MAKEFLAGS : -j2
19
20
20
21
cat_logs_snippet : &CAT_LOGS
21
22
always :
@@ -131,6 +132,8 @@ task:
131
132
env :
132
133
HOMEBREW_NO_AUTO_UPDATE : 1
133
134
HOMEBREW_NO_INSTALL_CLEANUP : 1
135
+ # Cirrus gives us a fixed number of 12 virtual CPUs. Not that we even have that many jobs at the moment...
136
+ MAKEFLAGS : -j13
134
137
matrix :
135
138
<< : *ENV_MATRIX
136
139
matrix :
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ valgrind --version || true
21
21
--with-valgrind=" $WITH_VALGRIND " \
22
22
--host=" $HOST " $EXTRAFLAGS
23
23
24
- make -j2
24
+ # We have set "-j<n>" in MAKEFLAGS.
25
+ make
25
26
26
27
# Print information about binaries so that we can see that the architecture is correct
27
28
file * tests || true
@@ -30,7 +31,7 @@ file .libs/* || true
30
31
31
32
if [ -n " $BUILD " ]
32
33
then
33
- make -j2 " $BUILD "
34
+ make " $BUILD "
34
35
fi
35
36
36
37
if [ " $RUN_VALGRIND " = " yes" ]
You can’t perform that action at this time.
0 commit comments