capture/.woodpecker.yml

16 lines
320 B
YAML
Raw Normal View History

2023-05-26 11:50:35 +02:00
pipeline:
test:
image: golang:1.19
commands:
- go test -v
2023-05-26 14:19:19 +02:00
2023-05-26 11:50:35 +02:00
build:
image: golang:1.19
commands:
- go build
2023-05-26 14:19:19 +02:00
- ART=/artifacts/deblan/capture
- test -d $ART || mkdir $ART
- cp capture $ART/capture-${CI_COMMIT_SHA:0:8}
volumes:
- /var/www/html/artifacts:/artifacts