Files
diceware/.woodpecker/build.yaml

22 lines
435 B
YAML
Raw Normal View History

2025-11-05 20:55:10 +01:00
matrix:
platform:
- linux/amd64
labels:
platform: ${platform}
steps:
2025-11-05 21:09:22 +01:00
build-n-test:
2025-11-05 20:55:10 +01:00
when:
event: [push]
image: alpine:latest
commands:
2025-11-05 20:58:48 +01:00
- apk update
2025-11-05 21:35:37 +01:00
- apk add --no-cache bash build-base words-en gdb valgrind
2025-11-05 20:55:10 +01:00
- make
2025-11-05 22:09:26 +01:00
#- valgrind --leak-check=full --show-reachable=yes ./dicepwgen
2025-11-05 21:35:37 +01:00
#- gdb -batch -ex "run" -ex "bt" --args dicepwgen
2025-11-05 22:09:26 +01:00
- ./dicepwgen -y | grep -E '[a-z]*%'
2025-11-05 21:09:22 +01:00
2025-11-05 20:55:10 +01:00