19 lines
283 B
YAML
19 lines
283 B
YAML
|
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]
|