ci-playground/.drone.yml
Paul Brinkmeier 92ddbac37c
All checks were successful
continuous-integration/drone/push Build is passing
Add basic unit tests framework
2022-10-25 17:09:21 +02:00

32 lines
591 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: hello world
image: alpine:3.16.2
commands:
- echo hello
- echo world
- name: python
image: python:3.11-rc-alpine
commands:
- python3 -c "print(6 * 7)"
---
kind: pipeline
type: docker
name: algo2
steps:
- name: pairingheap
image: gcc:12.2.0
commands:
- cd algo2/pairingheap
- gcc -Wall -Werror -o tests tests.c
- ./tests
- name: radixheap
image: gcc:12.2.0
commands:
- cd algo2/radixheap
- gcc -Wall -Werror -o main radixheap.c
- ./main