GTubeK/.woodpecker.yml
Midou36O 61dd0f22a9
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
wood pecker
2022-09-10 16:45:18 +01:00

24 lines
456 B
YAML

pipeline:
build:
when:
event: [push, pull_request]
image: rust:latest
commands:
- cargo update
- cargo build
- cargo test
- echo "Done building!"
gzip:
when:
event: [push]
image: rust:latest
commands:
- mkdir ../artifact
- mv target/debug ../artifact
- tar -c -z -v -f gtubek-dev.tar.gz ../artifact
#upload:
#when:
#event: [push]
#image: