-
Notifications
You must be signed in to change notification settings - Fork 74
MLE-24505 Doing full build on PR pipeline #1837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -38,6 +38,8 @@ def runTests(String image) { | |||||
| export GRADLE_USER_HOME=$WORKSPACE/$GRADLE_DIR | ||||||
| export PATH=$GRADLE_USER_HOME:$JAVA_HOME/bin:$PATH | ||||||
| cd java-client-api | ||||||
| // Ensure all modules can be built first. | ||||||
| ./gradlew clean build -x test | ||||||
|
||||||
| ./gradlew clean build -x test | |
| ./gradlew assemble |
Copilot
AI
Oct 6, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same issue as earlier occurrence: // inside a shell script block is not a valid Bash comment and will be executed as a command. Use a Bash comment (# Ensure all modules...) or place the comment outside the sh string.
| // Ensure all modules can be built first. | |
| # Ensure all modules can be built first. |
Copilot
AI
Oct 6, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate full clean build sequence as above may add unnecessary build time; consider replacing with ./gradlew assemble (or specific compile/package tasks) and omit clean unless a known incremental build issue exists.
| ./gradlew clean build -x test | |
| ./gradlew assemble |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The line appears inside a shell (sh) multiline string; // is not a valid Bash comment and will be interpreted as a command (likely causing a command not found error). Replace with a Bash comment (# ...) or move the remark outside the shell string as a Groovy comment.