22 lines
594 B
YAML
22 lines
594 B
YAML
platform: 'linux/amd64'
|
|
|
|
when:
|
|
branch:
|
|
exclude: [main]
|
|
event: push
|
|
|
|
steps:
|
|
build:
|
|
image: 'git.rustybever.be/chewing_bever/rieter-builder:1.79-alpine3.19'
|
|
commands:
|
|
- cargo build --verbose
|
|
# Binaries, even debug ones, should be statically compiled
|
|
- '[ "$(readelf -d target/debug/rieterd | grep NEEDED | wc -l)" = 0 ]'
|
|
|
|
# Clippy also performs a full build, so putting it here saves the CI a
|
|
# lot of work
|
|
clippy:
|
|
image: 'git.rustybever.be/chewing_bever/rieter-builder:1.79-alpine3.19'
|
|
commands:
|
|
- cargo clippy -- --no-deps -Dwarnings
|