Skip to content

Commit 36bc190

Browse files
committed
silence
1 parent 9c1d91c commit 36bc190

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

jenkins/runFullNightlyTest.fish

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env fish
2-
set -l fish_trace on
32
source jenkins/helper/jenkins.fish
43

54
cleanPrepareLockUpdateClear

scripts/lib/build.fish

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ function runMake
220220
end
221221

222222
if test "$SHOW_DETAILS" = "On"
223-
make $MAKEFLAGS $argv[1] VERBOSE=1 -j 32 2>&1
223+
make $MAKEFLAGS $argv[1] 2>&1
224224
or exit $status
225225
else
226226
echo make output in work/buildArangoDB.log
@@ -232,9 +232,9 @@ function runMake
232232
end
233233

234234
if test "$argv[1]" = "install"
235-
nice make $MAKEFLAGS > $INNERWORKDIR/buildArangoDB.log VERBOSE=1 2>&1
235+
nice make $MAKEFLAGS > $INNERWORKDIR/buildArangoDB.log 2>&1
236236
end
237-
and nice make $MAKEFLAGS $argv[1] >> $INNERWORKDIR/buildArangoDB.log VERBOSE=1 2>&1
237+
and nice make $MAKEFLAGS $argv[1] >> $INNERWORKDIR/buildArangoDB.log 2>&1
238238
or begin
239239
if test -n "$ep"
240240
kill $ep
@@ -286,7 +286,6 @@ function TT_cmake
286286
end
287287

288288
function TT_make
289-
set -l fish_trace on
290289
set -g TT_t3 (date -u +%s)
291290
and echo $TT_t0,make,(expr $TT_t3 - $TT_t2) >> $INNERWORKDIR/buildTimes.csv
292291
end

scripts/makeAlpine.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ or exit $status
1919

2020
mkdir -p install
2121
set -x DESTDIR (pwd)/install
22-
nice make -j$PARALLELISM $argv VERBOSE=1 V=1
22+
nice make -j$PARALLELISM $argv

scripts/makeArangoDB.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ if test "$PLATFORM" = "linux"
2121
set GOLD = -DCMAKE_EXE_LINKER_FLAGS=-fuse-ld=gold -DCMAKE_SHARED_LINKER_FLAGS=-fuse-ld=gold
2222
end
2323

24-
nice make -j$PARALLELISM $MAKE_TARGETS $argv VERBOSE=1 V=1
24+
nice make -j$PARALLELISM $MAKE_TARGETS $argv

scripts/switchBranches.fish

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env fish
2-
set -l fish_trace on
32

43
function setupSourceInfo
54
set -l field $argv[1]

0 commit comments

Comments
 (0)