feat(list): update pipeline to run ctest
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Rick Barenthin 2022-02-07 22:33:52 +01:00
parent 46d2e75d2f
commit 0cf7cb79af

View File

@ -26,4 +26,21 @@ steps:
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
...