packer-templates/.drone.yml

63 lines
1.4 KiB
YAML
Raw Normal View History

2022-03-06 20:36:39 +00:00
kind: pipeline
type: exec
2023-06-04 02:35:11 +00:00
name: packer-ubuntu20.04
2022-03-06 20:36:39 +00:00
platform:
os: linux
arch: amd64
steps:
- name: ubuntu
commands:
- packer build ubuntu/ubuntu-20.04-amd64.json
- wget -qO mc https://dl.min.io/client/mc/release/linux-amd64/mc && chmod +x mc
2023-06-04 02:30:56 +00:00
- ./mc mirror --overwrite builds/ STORAGE/$MC_BUCKET/ubuntu
2022-03-06 23:40:26 +00:00
- rm -f mc
2022-03-06 21:30:10 +00:00
environment:
2022-03-06 23:40:26 +00:00
MC_HOST_STORAGE:
from_secret: s3_url
MC_BUCKET:
from_secret: s3_bucket
---
kind: pipeline
type: exec
2023-06-04 02:35:11 +00:00
name: packer-ubuntu22.04
platform:
os: linux
arch: amd64
steps:
- name: ubuntu
commands:
- packer build ubuntu/ubuntu-22.04-amd64.json
- wget -qO mc https://dl.min.io/client/mc/release/linux-amd64/mc && chmod +x mc
2023-06-04 02:35:11 +00:00
- ./mc mirror --overwrite builds/ STORAGE/$MC_BUCKET/ubuntu
- rm -f mc
environment:
MC_HOST_STORAGE:
from_secret: s3_url
MC_BUCKET:
from_secret: s3_bucket
---
kind: pipeline
type: exec
name: packer-debian
platform:
os: linux
arch: amd64
steps:
- name: debian
commands:
2023-06-04 01:16:48 +00:00
- packer build debian/debian-11-amd64.json
- wget -qO mc https://dl.min.io/client/mc/release/linux-amd64/mc && chmod +x mc
2023-06-04 02:30:56 +00:00
- ./mc mirror --overwrite builds/ STORAGE/$MC_BUCKET/debian
2022-03-06 23:40:26 +00:00
- rm -f mc
2022-03-06 21:30:10 +00:00
environment:
2022-03-06 23:40:26 +00:00
MC_HOST_STORAGE:
from_secret: s3_url
MC_BUCKET:
from_secret: s3_bucket