waitui/.drone.yml
Rick Barenthin c38a06df87
Some checks failed
continuous-integration/drone/push Build is failing
feat(list): update pipeline fix build
2022-02-07 23:34:13 +01:00

49 lines
670 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:
- cmake -S. -Bbuild
- cd build
- cmake --build .
- ctest
trigger:
branch:
- feature/*
image_pull_secrets:
- dockerconfig
...