File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 21
21
- " /cache/repos:/cache/repos"
22
22
commands : |
23
23
echo "--- Build Julia from source"
24
- make -j 6
24
+ make --output-sync - j 6
25
25
26
26
echo "--- Print Julia version info"
27
27
./julia -e 'using InteractiveUtils; InteractiveUtils.versioninfo()'
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ steps:
22
22
commands : |
23
23
prefix="/tmp/prefix"
24
24
echo "+++ Build julia, deploy to $${prefix:?}"
25
- make -j$${JULIA_CPU_THREADS:?} JULIA_PRECOMPILE=0 prefix=$${prefix:?} install
25
+ make --output-sync - j$${JULIA_CPU_THREADS:?} JULIA_PRECOMPILE=0 prefix=$${prefix:?} install
26
26
27
27
embedding_output="/tmp/embedding-test"
28
28
echo "+++ Run embedding tests, deploy to $${embedding_output:?}"
29
29
mkdir -p "$${embedding_output:?}"
30
- make -j$${JULIA_CPU_THREADS:?} -C test/embedding JULIA="$${prefix:?}/bin/julia" BIN="$${embedding_output:?}"
30
+ make --output-sync - j$${JULIA_CPU_THREADS:?} -C test/embedding JULIA="$${prefix:?}/bin/julia" BIN="$${embedding_output:?}"
31
31
timeout_in_minutes : 60
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ steps:
19
19
- " /cache/repos:/cache/repos"
20
20
commands : |
21
21
echo "--- Install in-tree LLVM dependencies"
22
- make -j$${JULIA_CPU_THREADS:?} -C deps install-llvm install-clang install-llvm-tools install-libuv install-utf8proc install-unwind
22
+ make --output-sync - j$${JULIA_CPU_THREADS:?} -C deps install-llvm install-clang install-llvm-tools install-libuv install-utf8proc install-unwind
23
23
echo "+++ run clangsa/analyzegc"
24
- make -j$${JULIA_CPU_THREADS:?} -C test/clangsa
25
- make -j$${JULIA_CPU_THREADS:?} -C src analyzegc
24
+ make --output-sync - j$${JULIA_CPU_THREADS:?} -C test/clangsa
25
+ make --output-sync - j$${JULIA_CPU_THREADS:?} -C src analyzegc
26
26
timeout_in_minutes : 60
27
27
- label : " llvmpasses"
28
28
key : " llvmpasses"
40
40
- " /cache/repos:/cache/repos"
41
41
commands : |
42
42
echo "--- make release"
43
- make -j$${JULIA_CPU_THREADS:?} release JULIA_PRECOMPILE=0
43
+ make --output-sync - j$${JULIA_CPU_THREADS:?} release JULIA_PRECOMPILE=0
44
44
echo "--- make src/install-analysis-deps"
45
- make -j$${JULIA_CPU_THREADS:?} -C src install-analysis-deps
45
+ make --output-sync - j$${JULIA_CPU_THREADS:?} -C src install-analysis-deps
46
46
echo "+++ make test/llvmpasses"
47
- make -j$${JULIA_CPU_THREADS:?} -C test/llvmpasses
47
+ make --output-sync - j$${JULIA_CPU_THREADS:?} -C test/llvmpasses
48
48
timeout_in_minutes : 60
Original file line number Diff line number Diff line change 21
21
- github_commit_status :
22
22
context : " whitespace"
23
23
commands : |
24
- make -j$${JULIA_CPU_THREADS:?} check-whitespace
24
+ make --output-sync - j$${JULIA_CPU_THREADS:?} check-whitespace
Original file line number Diff line number Diff line change 35
35
36
36
echo "--- Build Julia from source"
37
37
rm -rf $${ARTIFACT_FILENAME:?}
38
- make -j 8
38
+ make --output-sync - j 8
39
39
40
40
echo "--- Make sure that the working directory is clean"
41
41
if [ -z "$(git status --short)" ]; then echo "INFO: The working directory is clean."; else echo "ERROR: The working directory is dirty."; echo "Output of git status:"; git status; exit 1; fi
44
44
./julia -e 'using InteractiveUtils; InteractiveUtils.versioninfo()'
45
45
46
46
echo "--- Create build artifacts"
47
- make -j 8 binary-dist
47
+ make --output-sync - j 8 binary-dist
48
48
ls -l $${JULIA_BINARYDIST:?}
49
49
if [[ "$${JULIA_BINARYDIST:?}" != "$${ARTIFACT_FILENAME:?}" ]]; then
50
50
mv $${JULIA_BINARYDIST:?} $${ARTIFACT_FILENAME:?}
Original file line number Diff line number Diff line change 21
21
gid : 1000
22
22
commands : |
23
23
echo "--- Build Julia from source"
24
- make -j 6
24
+ make --output-sync - j 6
25
25
26
26
echo "--- Print Julia version info"
27
27
./julia -e 'using InteractiveUtils; InteractiveUtils.versioninfo()'
You can’t perform that action at this time.
0 commit comments