blog/.drone.yml
Dominic Grimm 66fe384ae4
Some checks reported errors
continuous-integration/drone/push Build was killed
Update ci
2023-02-12 11:18:01 +01:00

23 lines
421 B
YAML

kind: pipeline
type: kubernetes
name: default
steps:
- name: test
image: docker.io/rust:1.67-alpine
commands:
- cargo test --verbose --all
- name: build
image: docker.io/tmaier/docker-compose
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- make ci
depends_on:
- test
volumes:
- name: dockersock
host:
path: /var/run/docker.sock