mirror of
https://github.com/tektoncd/catalog.git
synced 2024-11-21 05:55:35 +00:00
fe39623ded
fix catalog test failures on s390x
48 lines
2.6 KiB
Bash
48 lines
2.6 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright 2021 The Tekton Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# s390x specific registry
|
|
export REGISTRY_IMAGE=ibmcom/registry:2.6.2.5
|
|
# Maven image to use for s390x maven tasks
|
|
export MAVEN_IMAGE=maven:3.6.3-adoptopenjdk-11
|
|
# Architecture to use for golang tasks
|
|
export GOARCH=s390x
|
|
# Gradle image to use for s390x gradle tasks
|
|
export BUILDER_IMAGE=gradle:5.6.2-jdk11
|
|
# Tasks to skip so far for s390x
|
|
export TEST_TASKRUN_IGNORES="helm-upgrade-from-repo helm-upgrade-from-source golang-test kaniko"
|
|
|
|
echo "Add extra MAVEN_IMAGE parameter"
|
|
find task/*maven*/*/tests/run.yaml | xargs -I{} yq eval '(..|select(.kind?=="Pipeline")|select(.metadata.name?=="jib-maven-test-pipeline"|"maven-test-pipeline")|.spec.tasks[1].params) |= . +{"name": "MAVEN_IMAGE","value": env(MAVEN_IMAGE)}' -i {}
|
|
|
|
echo "Change registry image value"
|
|
find task -name *registry*.yaml | xargs -I{} yq eval '(..|select(.kind?=="Deployment")|select(.metadata.name?=="registry")|.spec.template.spec.containers[0].image)|= env(REGISTRY_IMAGE)' -i {}
|
|
|
|
echo "Change GOARCH parameter value"
|
|
find task/golang*/*/tests/run.yaml | xargs -I{} yq eval '(..|select(.kind?=="Pipeline")|.spec.tasks[1].params) |= . +{"name": "GOARCH","value": env(GOARCH)}' -i {}
|
|
|
|
echo "Add extra GRADLE_IMAGE value"
|
|
find task/gradle/*/tests/run.yaml | xargs -I{} yq eval '(..|select(.kind?=="Pipeline")|.spec.tasks[1].params) |= . +{"name": "GRADLE_IMAGE","value": env(BUILDER_IMAGE)}' -i {}
|
|
|
|
echo "Add extra BUILDER_IMAGE parameter"
|
|
find task/jib-gradle/*/tests/run.yaml | xargs -I{} yq eval '(..|select(.kind?=="Pipeline")|.spec.tasks[1].params) |= . +{"name": "BUILDER_IMAGE","value": env(BUILDER_IMAGE)}' -i {}
|
|
|
|
echo "Add extra MAVEN_IMAGE parameter for maven-0-3 test"
|
|
yq eval '(..|select(.kind?=="Pipeline")|select(.metadata.name?=="jib-maven-test-pipeline"|"maven-test-pipeline")|.spec.tasks[2].params) |= . +{"name": "MAVEN_IMAGE","value": env(MAVEN_IMAGE)}' -i task/maven/0.3/tests/run.yaml
|
|
|
|
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"}}'
|