Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions jib-core/kokoro/release_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ set -o errexit
# Display commands to stderr.
set -o xtrace

echo "java version:"
java -version

cd github/jib
./gradlew :jib-core:prepareRelease
4 changes: 4 additions & 0 deletions jib-gradle-plugin/scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ readonly PUBLISH_SECRET=$(cat "${KOKORO_KEYSTORE_DIR}/72743_gradle_publish_secre

set -o xtrace

echo "java version:"
java -version


# From default hostname, get id of container to exclude
CONTAINER_ID=$(hostname)
echo "$CONTAINER_ID"
Expand Down
3 changes: 3 additions & 0 deletions jib-maven-plugin/kokoro/release_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ if [ "${KOKORO_JOB_CLUSTER}" = "GCP_UBUNTU_DOCKER" ]; then
JAVA_TOOL_OPTIONS="${JAVA_TOOL_OPTIONS} -Xlog:os+container=error"
fi

echo "java version:"
java -version

cd github/jib
./gradlew :jib-maven-plugin:prepareRelease
Loading