1
0
Fork 0

add drone-ci
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pim van den Berg 2022-07-01 15:42:00 +02:00
parent 67a4f2b02e
commit 1bafd3cb64
1 changed files with 57 additions and 0 deletions

57
.drone.yml Normal file
View File

@ -0,0 +1,57 @@
kind: pipeline
name: default
type: docker
steps:
- name: build
image: docker:dind
volumes:
- name: dockersock
path: /var/run
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- sleep 5 # give docker enough time to start
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- ./debian/11/build.sh
- ./debian/12/build.sh
when:
branch:
- master
event:
- push
- name: rebuild
image: docker:dind
volumes:
- name: dockersock
path: /var/run
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- sleep 5 # give docker enough time to start
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- ./build/rebuild.sh
when:
event:
- cron
cron:
- rebuild
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}