Skip to content

Commit 0ea6946

Browse files
committed
Do not run distclean in builds
Builds start with a fresh checkout of OMR, there is no need to actually run distclean. Signed-off-by: Robert Young <[email protected]>
1 parent 05019a0 commit 0ea6946

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

buildenv/jenkins/jobs/builds/Build-linux_x86-64_cmprssptrs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pipeline {
3333
sh '''ccache -s -z'''
3434

3535
echo 'Configure...'
36-
sh '''make -f run_configure.mk OMRGLUE=./example/glue SPEC=linux_x86-64_cmprssptrs PLATFORM=amd64-linux64-gcc HAS_AUTOCONF=1 distclean all'''
36+
sh '''make -f run_configure.mk OMRGLUE=./example/glue SPEC=linux_x86-64_cmprssptrs PLATFORM=amd64-linux64-gcc HAS_AUTOCONF=1 all'''
3737

3838
echo 'Compile...'
3939
sh '''make -j4'''

buildenv/jenkins/jobs/pull-requests/PullRequest-linux_x86-64_cmprssptrs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pipeline {
1919
sh '''ccache -s -z'''
2020

2121
echo 'Configure...'
22-
sh '''make -f run_configure.mk OMRGLUE=./example/glue SPEC=linux_x86-64_cmprssptrs PLATFORM=amd64-linux64-gcc HAS_AUTOCONF=1 distclean all'''
22+
sh '''make -f run_configure.mk OMRGLUE=./example/glue SPEC=linux_x86-64_cmprssptrs PLATFORM=amd64-linux64-gcc HAS_AUTOCONF=1 all'''
2323

2424
echo 'Compile...'
2525
sh '''make -j4'''

scripts/build-on-travis.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
set -evx
2525

26-
time make -f run_configure.mk OMRGLUE=./example/glue SPEC=${SPEC} PLATFORM=${PLATFORM} HAS_AUTOCONF=1 distclean all
26+
time make -f run_configure.mk OMRGLUE=./example/glue SPEC=${SPEC} PLATFORM=${PLATFORM} HAS_AUTOCONF=1 all
2727
if test "x$RUN_LINT" = "xyes"; then
2828
llvm-config --version
2929
clang++ --version

0 commit comments

Comments
 (0)