rieter/.woodpecker/build.yml

17 lines
393 B
YAML
Raw Normal View History

2023-07-31 18:13:55 +02:00
platform: 'linux/amd64'
2023-08-13 20:24:34 +02:00
when:
branch:
exclude: [main]
2024-07-07 10:51:27 +02:00
event: [push, pull_request]
2023-08-13 20:24:34 +02:00
steps:
2023-07-31 18:13:55 +02:00
build:
image: 'rust:1.70-alpine3.18'
commands:
- apk add --no-cache build-base libarchive libarchive-dev
- cargo build --verbose
2024-07-07 10:51:27 +02:00
# Binaries, even debug ones, should be statically compiled
- '[ "$(readelf -d target/debug/rieterd | grep NEEDED | wc -l)" = 0 ]'
2023-07-31 18:13:55 +02:00