docker-s3-backup/.drone.yml

85 lines
1.9 KiB
YAML
Raw Normal View History

2023-10-31 21:37:36 +00:00
kind: pipeline
type: docker
name: ci
steps:
2023-11-01 15:43:44 +00:00
- name: setup
2023-10-31 21:37:36 +00:00
image: debian:12
2023-11-01 15:03:33 +00:00
volumes:
2023-11-01 15:48:49 +00:00
- name: docker
path: /var/lib/docker
- name: usrbin
path: /usr/bin
2023-11-01 15:03:33 +00:00
- name: dockersocket
path: /var/run/docker.sock
2023-10-31 21:37:36 +00:00
commands:
2023-11-01 14:48:52 +00:00
- apt-get update && apt-get install -y curl # install dependencies from apt
- curl -fsSL https://get.docker.com -o get-docker.sh # install docker
- sh ./get-docker.sh
2023-11-01 15:53:37 +00:00
- docker buildx create --name builder${DRONE_COMMIT_SHA}${DRONE_BUILD_NUMBER} --use
2023-11-01 15:48:49 +00:00
- sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/bin # install task
# - task build # build the docker image
2023-11-01 15:43:44 +00:00
- name: build
image: debian:12
2023-11-01 15:52:24 +00:00
depends_on:
- setup
2023-11-01 15:43:44 +00:00
volumes:
2023-11-01 15:48:49 +00:00
- name: docker
path: /var/lib/docker
- name: usrbin
path: /usr/bin
2023-11-01 15:43:44 +00:00
- name: dockersocket
path: /var/run/docker.sock
commands:
- tag=$${DRONE_TAG:-$DRONE_BRANCH} # set tag to tag name (if applicable) or branch name
2023-11-01 15:48:49 +00:00
- task build TAG=$tag # build the docker image
2023-11-01 15:43:44 +00:00
- name: publish tag
image: debian:12
2023-11-01 15:52:24 +00:00
depends_on:
- build
2023-11-01 15:43:44 +00:00
environment:
PASSOWRD:
from_secret: FORGEJO_PASSWORD
volumes:
2023-11-01 15:48:49 +00:00
- name: docker
path: /var/lib/docker
- name: usrbin
path: /usr/bin
2023-11-01 15:43:44 +00:00
- name: dockersocket
path: /var/run/docker.sock
commands:
- docker login -u drone -p ${PASSWORD}
- tag=$${DRONE_TAG:-$DRONE_BRANCH} # set tag to tag name (if applicable) or branch name
2023-11-01 15:48:49 +00:00
- task push TAG=$tag
2023-11-01 15:43:44 +00:00
when:
event:
- tag
- name: publish main
image: debian:12
2023-11-01 15:52:24 +00:00
depends_on:
- build
2023-11-01 15:43:44 +00:00
environment:
PASSOWRD:
from_secret: FORGEJO_PASSWORD
volumes:
2023-11-01 15:48:49 +00:00
- name: docker
path: /var/lib/docker
- name: usrbin
path: /usr/bin
2023-11-01 15:43:44 +00:00
- name: dockersocket
path: /var/run/docker.sock
commands:
- docker login -u drone -p ${PASSWORD}
2023-11-01 15:48:49 +00:00
- task push TAG=main
2023-11-01 15:43:44 +00:00
when:
branch:
- main
2023-11-01 15:03:33 +00:00
volumes:
- name: dockersocket
host:
2023-11-01 15:43:44 +00:00
path: /var/run/docker.sock
2023-11-01 15:48:49 +00:00
- name: docker
temp: {}
- name: usrbin
2023-11-01 15:43:44 +00:00
temp: {}