Skip to content
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

Fix the Jib Gradle test failing on IBM Power and Z #1308

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion task/jib-gradle/0.1/jib-gradle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
# Adds Gradle init script that applies the Jib Gradle plugin.
echo "initscript {
repositories { maven { url 'https://plugins.gradle.org/m2' } }
dependencies { classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:+' }
dependencies { classpath 'com.google.cloud.tools:jib-gradle-plugin:+' }
}
rootProject {
afterEvaluate {
Expand Down
2 changes: 1 addition & 1 deletion task/jib-gradle/0.2/jib-gradle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
# Adds Gradle init script that applies the Jib Gradle plugin.
echo "initscript {
repositories { maven { url 'https://plugins.gradle.org/m2' } }
dependencies { classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:+' }
dependencies { classpath 'com.google.cloud.tools:jib-gradle-plugin:+' }
}
rootProject {
afterEvaluate {
Expand Down
2 changes: 1 addition & 1 deletion task/jib-gradle/0.3/jib-gradle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
# Adds Gradle init script that applies the Jib Gradle plugin.
echo "initscript {
repositories { maven { url 'https://plugins.gradle.org/m2' } }
dependencies { classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:+' }
dependencies { classpath 'com.google.cloud.tools:jib-gradle-plugin:+' }
}
rootProject {
afterEvaluate {
Expand Down
2 changes: 1 addition & 1 deletion task/jib-gradle/0.4/jib-gradle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ spec:
# Adds Gradle init script that applies the Jib Gradle plugin.
echo "initscript {
repositories { maven { url 'https://plugins.gradle.org/m2' } }
dependencies { classpath 'gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:+' }
dependencies { classpath 'com.google.cloud.tools:jib-gradle-plugin:+' }
}
rootProject {
afterEvaluate {
Expand Down
1 change: 0 additions & 1 deletion test/linux-ppc64le.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,3 @@ kubectl patch cm feature-flags -n tekton-pipelines -p '{"data":{"enable-step-act
echo "Patch to Disable Affinity Assistant (Needed to allow binding of two PVCs for Maven-0-3 test)"
kubectl patch cm feature-flags -n tekton-pipelines -p '{"data":{"disable-affinity-assistant":"true"}}'


1 change: 1 addition & 0 deletions test/linux-s390x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ yq eval '(..|select(.kind?=="Pipeline")|select(.metadata.name?=="jib-maven-test-

echo "Patch to Enable Step Actions,Disable Affinity Assistant on the cluster"
kubectl patch cm feature-flags -n tekton-pipelines -p '{"data":{"enable-step-actions":"true","disable-affinity-assistant":"true"}}'