Latex/.drone.yml

118 lines
2.8 KiB
YAML
Raw Normal View History

2023-07-10 11:07:44 +02:00
kind: pipeline
type: kubernetes
2023-09-03 21:12:27 +02:00
name: prepare-manifest
2023-07-12 10:32:24 +02:00
platform:
2023-09-03 21:12:27 +02:00
arch: amd64
node_selector:
kubernetes.io/arch: amd64
2023-07-12 10:32:24 +02:00
volumes:
- name: fedhq-ca-crt
config_map:
name: fedhq-ca-crt
default_mode: 420 # same as 644 in octal, or u+w,a+r
optional: false
- name: cache
claim:
name: federationhq-drone-cache-pvc
read_only: false
steps:
2023-09-05 21:12:09 +02:00
# - name: prepare manifest
# image: quay.io/buildah/stable
# privileged: true
# volumes:
# - name: fedhq-ca-crt
# path: /etc/ssl/certs2/
# - name: cache
# path: /var/lib/containers/storage
# commands:
# - scripts/setupEnvironment.sh
# - buildah manifest rm latex|| true
# - buildah manifest create latex
2023-09-03 21:12:27 +02:00
---
2023-07-12 10:32:24 +02:00
kind: pipeline
type: kubernetes
2023-09-03 21:12:27 +02:00
name: build-amd64
2023-07-12 10:32:24 +02:00
platform:
arch: amd64
2023-09-03 21:12:27 +02:00
node_selector:
kubernetes.io/arch: amd64
volumes:
- name: fedhq-ca-crt
config_map:
name: fedhq-ca-crt
default_mode: 420 # same as 644 in octal, or u+w,a+r
optional: false
steps:
- name: build amd64
image: quay.io/buildah/stable
privileged: true
volumes:
- name: fedhq-ca-crt
path: /etc/ssl/certs2/
commands:
- scripts/setupEnvironment.sh
2023-09-05 21:12:09 +02:00
- buildah bud --network host -t "registry.cloud.federationhq.de/latex:latest-amd64" --arch amd64 .
- buildah push registry.cloud.federationhq.de/latex:latest-amd64
2023-07-10 11:07:44 +02:00
2023-09-03 21:12:27 +02:00
---
kind: pipeline
type: kubernetes
name: build-arm64
platform:
arch: arm64
node_selector:
kubernetes.io/arch: arm64
2023-07-10 13:31:49 +02:00
2023-07-10 11:07:44 +02:00
volumes:
- name: fedhq-ca-crt
config_map:
name: fedhq-ca-crt
default_mode: 420 # same as 644 in octal, or u+w,a+r
optional: false
steps:
2023-09-03 21:12:27 +02:00
- name: build arm64
image: quay.io/buildah/stable
privileged: true
volumes:
- name: fedhq-ca-crt
path: /etc/ssl/certs2/
commands:
- scripts/setupEnvironment.sh
2023-09-05 21:30:28 +02:00
- buildah bud -t "registry.cloud.federationhq.de/latex:latex-arm64" --net=host --arch arm64 .
- buildah push registry.cloud.federationhq.de/latex:latex-arm64
2023-09-03 21:12:27 +02:00
---
kind: pipeline
type: kubernetes
name: push
node_selector:
kubernetes.io/arch: amd64
volumes:
- name: fedhq-ca-crt
config_map:
name: fedhq-ca-crt
default_mode: 420 # same as 644 in octal, or u+w,a+r
optional: false
steps:
- name: push
image: quay.io/buildah/stable
2023-07-10 11:14:57 +02:00
privileged: true
2023-07-10 11:07:44 +02:00
volumes:
- name: fedhq-ca-crt
path: /etc/ssl/certs2/
2023-09-03 21:12:27 +02:00
commands:
- scripts/setupEnvironment.sh
2023-09-05 21:12:09 +02:00
- buildah manifest create registry.cloud.federationhq.de/latex:latest registry.cloud.federationhq.de/latex:lates-arm64 registry.cloud.federationhq.de/latex:lates-amd64
- buildah manifest push --all latex docker://registry.cloud.federationhq.de/latex:latest"
- buildah manifest rm registry.cloud.federationhq.de/latex:latest
2023-09-03 21:12:27 +02:00
depends_on:
- build-amd64
- build-arm64