GTubeK/.woodpecker.yml

24 lines
495 B
YAML
Raw Normal View History

2022-09-08 17:40:23 +05:30
pipeline:
build:
when:
event: [push, pull_request]
2022-09-13 02:47:14 +05:30
image: ghcr.io/13hannes11/gtk4-rs-docker:latest-appimage
2022-09-08 17:40:23 +05:30
commands:
2022-09-10 21:15:18 +05:30
- cargo update
2022-09-08 17:40:23 +05:30
- cargo build
2022-09-10 21:15:18 +05:30
- cargo test
2022-09-08 17:40:23 +05:30
- 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: