This commit is contained in:
Midou36O 2022-09-08 13:10:23 +01:00
parent fa650374de
commit 80b37cc348
Signed by: midou
GPG Key ID: 08063D5407090BC2
2 changed files with 23 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
cargo.lock

21
.woodpecker.yml Normal file
View File

@ -0,0 +1,21 @@
pipeline:
build:
when:
event: [push, pull_request]
image: rust:latest
commands:
- cargo build
- 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: