14 lines
245 B
YAML
14 lines
245 B
YAML
|
platform: 'linux/amd64'
|
||
|
branches:
|
||
|
exclude: [main]
|
||
|
|
||
|
pipeline:
|
||
|
build:
|
||
|
image: 'rust:1.70-alpine3.18'
|
||
|
commands:
|
||
|
- apk add --no-cache build-base libarchive libarchive-dev
|
||
|
- cargo build --verbose
|
||
|
when:
|
||
|
event: [push]
|
||
|
|