ringbuf/.woodpecker/test.yaml

22 lines
354 B
YAML
Raw Normal View History

2024-12-25 19:19:28 +01:00
when:
- event: push
branch: master
2024-12-25 19:19:28 +01:00
2024-12-25 19:50:43 +01:00
image: debian
2024-12-25 19:19:28 +01:00
steps:
2024-12-25 19:50:43 +01:00
- name: install-dependencies
2024-12-25 19:19:28 +01:00
commands:
2024-12-25 19:38:23 +01:00
- apt update
2024-12-25 19:39:17 +01:00
- apt install libcmocka-dev -y
2024-12-25 19:46:03 +01:00
- apt install gcc -y
- apt install make -y
2024-12-25 19:50:43 +01:00
- name: build-tests
2024-12-25 19:52:31 +01:00
commands:
2024-12-25 19:46:03 +01:00
- make -j$(nproc) test/test.elf
2024-12-25 19:50:43 +01:00
- name: run-tests
2024-12-25 19:19:28 +01:00
commands:
2024-12-25 19:46:03 +01:00
- ./test/test.elf