build scripts: an option to override preconfigured compilation options in tests.cmd

IJI-2080

GitOrigin-RevId: fd546a2e27453d3d9387ca77fc437ce3c3356593
This commit is contained in:
Dmitriy.Panov
2025-01-16 12:46:49 +01:00
committed by intellij-monorepo-bot
parent 0414503702
commit 3272dbd9a6

View File

@@ -9,8 +9,8 @@ GOTO :CMDSCRIPT
set -eux
root="$(cd "$(dirname "$0")"; pwd)"
exec "$root/platform/jps-bootstrap/jps-bootstrap.sh" "$@" -Dintellij.build.incremental.compilation=true -Dintellij.build.use.compiled.classes=false "$root" intellij.idea.community.build CommunityRunTestsBuildTarget
exec "$root/platform/jps-bootstrap/jps-bootstrap.sh" -Dintellij.build.incremental.compilation=true -Dintellij.build.use.compiled.classes=false "$@" "$root" intellij.idea.community.build CommunityRunTestsBuildTarget
:CMDSCRIPT
call "%~dp0\platform\jps-bootstrap\jps-bootstrap.cmd" %* -Dintellij.build.incremental.compilation=true -Dintellij.build.use.compiled.classes=false "%~dp0." intellij.idea.community.build CommunityRunTestsBuildTarget
call "%~dp0\platform\jps-bootstrap\jps-bootstrap.cmd" -Dintellij.build.incremental.compilation=true -Dintellij.build.use.compiled.classes=false %* "%~dp0." intellij.idea.community.build CommunityRunTestsBuildTarget
EXIT /B %ERRORLEVEL%