Skip to content

Commit 0f496ee

Browse files
committed
Don't build the Docker image as part of the 'quick-archives' target in the simple build script
1 parent 7904d46 commit 0f496ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ set "BASE_CMD=%SCRIPT_DIR%\mvnw.cmd -V"
8585
if "%TARGET%"=="quick" (
8686
set "CMD=%BASE_CMD% %CONCURRENCY% clean package -DskipTests -Ddependency-check.skip=true -Dappbundler.skip=true -Ddocker=false -P !mac-dmg-on-mac,!codesign-mac-app,!codesign-mac-dmg,!mac-dmg-on-unix,!installer,!concurrency-stress-tests,!micro-benchmarks,skip-build-dist-archives"
8787
) else if "%TARGET%"=="quick-archives" (
88-
set "CMD=%BASE_CMD% %CONCURRENCY% clean package -DskipTests -Ddependency-check.skip=true -Ddocker=true -P installer,!concurrency-stress-tests,!micro-benchmarks"
88+
set "CMD=%BASE_CMD% %CONCURRENCY% clean package -DskipTests -Ddependency-check.skip=true -Ddocker=false -P installer,!concurrency-stress-tests,!micro-benchmarks"
8989
) else if "%TARGET%"=="quick-docker" (
9090
set "CMD=%BASE_CMD% %CONCURRENCY% clean package -DskipTests -Ddependency-check.skip=true -Dappbundler.skip=true -Ddocker=true -P docker,!mac-dmg-on-mac,!codesign-mac-app,!codesign-mac-dmg,!mac-dmg-on-unix,!installer,!concurrency-stress-tests,!micro-benchmarks,skip-build-dist-archives"
9191
) else if "%TARGET%"=="quick-archives-docker" (

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ if [ "${TARGET}" == "quick" ]; then
111111
fi
112112

113113
if [ "${TARGET}" == "quick-archives" ]; then
114-
CMD="${BASE_CMD} ${CONCURRENCY} clean package -DskipTests -Ddependency-check.skip=true -Ddocker=true -P installer,!concurrency-stress-tests,!micro-benchmarks"
114+
CMD="${BASE_CMD} ${CONCURRENCY} clean package -DskipTests -Ddependency-check.skip=true -Ddocker=false -P installer,!concurrency-stress-tests,!micro-benchmarks"
115115
$CMD
116116
exit 0;
117117
fi

0 commit comments

Comments
 (0)