From b6b7be3fa2b19af49174cc3acd91a483051df343 Mon Sep 17 00:00:00 2001 From: Thomas Ferrandiz Date: Mon, 4 Dec 2023 14:57:29 +0000 Subject: [PATCH] remove s390x steps temporarily since runners are disabled --- .drone.yml | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) diff --git a/.drone.yml b/.drone.yml index 7bff843..eb854d8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -102,55 +102,6 @@ steps: - refs/tags/* - refs/pull/** -volumes: -- name: docker - host: - path: /var/run/docker.sock ---- -kind: pipeline -type: docker -name: linux-s390x - -platform: - os: linux - arch: amd64 - -node: - arch: s390x - -steps: -- name: build - pull: always - image: rancher/hardened-build-base:v1.20.7b3 - commands: - - make DRONE_TAG=${DRONE_TAG} - volumes: - - name: docker - path: /var/run/docker.sock - when: - ref: - include: - - refs/heads/master - - refs/tags/* - - refs/pull/** - -- name: publish - image: rancher/hardened-build-base:v1.20.7b3 - commands: - - docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD - - make DRONE_TAG=${DRONE_TAG} image-push - environment: - DOCKER_PASSWORD: - from_secret: docker_password - DOCKER_USERNAME: - from_secret: docker_username - volumes: - - name: docker - path: /var/run/docker.sock - when: - event: - - tag - volumes: - name: docker host: @@ -178,5 +129,4 @@ steps: depends_on: - linux-amd64 - linux-arm64 -- linux-s390x ...