docker-images/.drone.yml
Erki 5e488dd05a
All checks were successful
continuous-integration/drone/push Build is passing
Disable caching
2022-01-23 15:31:17 +02:00

41 lines
888 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build cpp-ubuntu
image: docker
commands:
- docker build --no-cache -t erki/cpp-ubuntu:latest - < cpp-ubuntu.Dockerfile
volumes:
- name: docker_socket
path: /var/run/docker.sock
- name: build jenkins-ubuntu
image: docker
commands:
- docker build --no-cache -t erki/jenkins-ubuntu:latest - < jenkins-ubuntu.Dockerfile
volumes:
- name: docker_socket
path: /var/run/docker.sock
- name: notify
image: plugins/matrix
settings:
homeserver:
from_secret: matrix_homeserver
roomid:
from_secret: matrix_roomid
username:
from_secret: matrix_username
password:
from_secret: matrix_password
when:
status:
- failure
volumes:
- name: docker_socket
host:
path: /var/run/docker.sock