From 748bc08b3344b74a7a354c4c0a42f2c6986306e3 Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Tue, 28 Mar 2023 20:40:44 +0200 Subject: [PATCH] meta: always cache regardless of job status --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d6af4de..366c214 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ build-x86_64: &build cache: key: repodest-x86_64 paths: [repodest/] + when: always stage: build script: - setup-ssh-key "$PRIVATE_KEY" @@ -29,6 +30,7 @@ build-aarch64: cache: key: repodest-aarch64 paths: [repodest/] + when: always image: registry.git.ptrc.gay/ptrcnull/ptrcports-builder/arm64v8:latest # build-armhf: @@ -36,6 +38,7 @@ build-aarch64: # cache: # key: repodest-armhf # paths: [repodest/] +# when: always # image: arm32v6/alpine:edge # build-armv7: @@ -43,6 +46,7 @@ build-aarch64: # cache: # key: repodest-armv7 # paths: [repodest/] +# when: always # image: arm32v7/alpine:edge # build-ppc64le: @@ -50,6 +54,7 @@ build-aarch64: # cache: # key: repodest-ppc64le # paths: [repodest/] +# when: always # image: ppc64le/alpine:edge # build-riscv64: @@ -57,6 +62,7 @@ build-aarch64: # cache: # key: repodest-riscv64 # paths: [repodest/] +# when: always # image: riscv64/alpine:edge # build-s390x: @@ -64,6 +70,7 @@ build-aarch64: # cache: # key: repodest-s390x # paths: [repodest/] +# when: always # image: s390x/alpine:edge # build-x86: @@ -71,4 +78,5 @@ build-aarch64: # cache: # key: repodest-x86 # paths: [repodest/] +# when: always # image: i386/alpine:edge