From e832c671ed1e9aee2ddc7246ae9c19080c64453f Mon Sep 17 00:00:00 2001 From: Pedro Tashima Date: Wed, 6 Dec 2023 15:45:18 -0300 Subject: [PATCH] remove s390x from drone and manifest (#81) Signed-off-by: Pedro Tashima Co-authored-by: Pedro Tashima --- .drone.yml | 51 ------------------------------------------------ scripts/manifest | 2 +- 2 files changed, 1 insertion(+), 52 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2cd2a52..d366c27 100644 --- a/.drone.yml +++ b/.drone.yml @@ -144,57 +144,6 @@ volumes: host: path: /var/run/docker.sock ---- -kind: pipeline -name: s390x - -platform: - os: linux - arch: amd64 - -node: - arch: s390x - -steps: -- name: tag - image: rancher/dapper:v0.5.8 - commands: - - echo "${DRONE_TAG}-s390x" | sed -e 's/+/-/g' >.tags - volumes: - - name: docker - path: /var/run/docker.sock -- name: docker-publish - image: rancher/drone-images:docker-s390x - settings: - dockerfile: Dockerfile - build_args: - - ARCH=s390x - - TAG=${DRONE_TAG} - password: - from_secret: docker_password - repo: "rancher/k3s-upgrade" - username: - from_secret: docker_username - volumes: - - name: docker - path: /var/run/docker.sock - when: - instance: - - drone-publish.k3s.io - ref: - include: - - refs/head/master - - refs/tags/* - exclude: - - refs/tags/v1.21.* - event: - - tag - -volumes: -- name: docker - host: - path: /var/run/docker.sock - --- kind: pipeline name: manifest diff --git a/scripts/manifest b/scripts/manifest index a015d85..67bc13f 100755 --- a/scripts/manifest +++ b/scripts/manifest @@ -8,7 +8,7 @@ if [ -z "${DRONE_TAG}" ]; then elif echo "${DRONE_TAG}" | grep -E '1.21.\d*.*'; then export PLUGIN_PLATFORMS="linux/amd64,linux/arm64,linux/arm" else - export PLUGIN_PLATFORMS="linux/amd64,linux/arm64,linux/arm,linux/s390x" + export PLUGIN_PLATFORMS="linux/amd64,linux/arm64,linux/arm" fi export REPO="rancher/k3s-upgrade"