chimemon/.woodpecker/build.yaml

19 lines
283 B
YAML
Raw Permalink Normal View History

2023-09-21 23:30:52 -07:00
matrix:
PLATFORM:
- linux/amd64
- linux/arm64
labels:
platform: ${PLATFORM}
steps:
build:
image: rust:1
commands:
- cargo build
when:
path:
include: ["./**/Cargo.*", "./**/*.rs"]
ignore_message: "[ALL]"
event: [tag,push]