waitui/.drone.yml
Rick Barenthin 0cf7cb79af
All checks were successful
continuous-integration/drone/push Build is passing
feat(list): update pipeline to run ctest
2022-02-07 22:33:52 +01:00

46 lines
603 B
YAML

---
kind: pipeline
type: docker
name: main
steps:
- name: Tag commit
image: alpine
commands:
- echo This would create a tag
trigger:
branch:
- main
---
kind: pipeline
type: docker
name: develop
steps:
- name: Tag commit
image: alpine
commands:
- echo This would build the app and run test
trigger:
branch:
- develop
---
kind: pipeline
type: docker
name: feature
steps:
- name: Run tests
image: registry.riba-interactive.de/alpine-build:latest
commands:
- ctest
trigger:
branch:
- feature/*
image_pull_secrets:
- dockerconfig
...