meta: add cache to ci jobs
This commit is contained in:
parent
8a8d68e43d
commit
fa906cb560
1 changed files with 24 additions and 0 deletions
|
@ -4,6 +4,9 @@ workflow:
|
||||||
|
|
||||||
build-x86_64: &build
|
build-x86_64: &build
|
||||||
image: registry.git.ptrc.gay/ptrcnull/ptrcports-builder/x86_64:latest
|
image: registry.git.ptrc.gay/ptrcnull/ptrcports-builder/x86_64:latest
|
||||||
|
cache:
|
||||||
|
key: repodest-x86_64
|
||||||
|
paths: [repodest/]
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- setup-ssh-key "$PRIVATE_KEY"
|
- setup-ssh-key "$PRIVATE_KEY"
|
||||||
|
@ -23,28 +26,49 @@ build-x86_64: &build
|
||||||
|
|
||||||
build-aarch64:
|
build-aarch64:
|
||||||
<<: *build
|
<<: *build
|
||||||
|
cache:
|
||||||
|
key: repodest-aarch64
|
||||||
|
paths: [repodest/]
|
||||||
image: registry.git.ptrc.gay/ptrcnull/ptrcports-builder/arm64v8:latest
|
image: registry.git.ptrc.gay/ptrcnull/ptrcports-builder/arm64v8:latest
|
||||||
|
|
||||||
# build-armhf:
|
# build-armhf:
|
||||||
# <<: *build
|
# <<: *build
|
||||||
|
# cache:
|
||||||
|
# key: repodest-armhf
|
||||||
|
# paths: [repodest/]
|
||||||
# image: arm32v6/alpine:edge
|
# image: arm32v6/alpine:edge
|
||||||
|
|
||||||
# build-armv7:
|
# build-armv7:
|
||||||
# <<: *build
|
# <<: *build
|
||||||
|
# cache:
|
||||||
|
# key: repodest-armv7
|
||||||
|
# paths: [repodest/]
|
||||||
# image: arm32v7/alpine:edge
|
# image: arm32v7/alpine:edge
|
||||||
|
|
||||||
# build-ppc64le:
|
# build-ppc64le:
|
||||||
# <<: *build
|
# <<: *build
|
||||||
|
# cache:
|
||||||
|
# key: repodest-ppc64le
|
||||||
|
# paths: [repodest/]
|
||||||
# image: ppc64le/alpine:edge
|
# image: ppc64le/alpine:edge
|
||||||
|
|
||||||
# build-riscv64:
|
# build-riscv64:
|
||||||
# <<: *build
|
# <<: *build
|
||||||
|
# cache:
|
||||||
|
# key: repodest-riscv64
|
||||||
|
# paths: [repodest/]
|
||||||
# image: riscv64/alpine:edge
|
# image: riscv64/alpine:edge
|
||||||
|
|
||||||
# build-s390x:
|
# build-s390x:
|
||||||
# <<: *build
|
# <<: *build
|
||||||
|
# cache:
|
||||||
|
# key: repodest-s390x
|
||||||
|
# paths: [repodest/]
|
||||||
# image: s390x/alpine:edge
|
# image: s390x/alpine:edge
|
||||||
|
|
||||||
# build-x86:
|
# build-x86:
|
||||||
# <<: *build
|
# <<: *build
|
||||||
|
# cache:
|
||||||
|
# key: repodest-x86
|
||||||
|
# paths: [repodest/]
|
||||||
# image: i386/alpine:edge
|
# image: i386/alpine:edge
|
||||||
|
|
Loading…
Reference in a new issue