Files
castor/.woodpecker.yml
David Ashby ab0cb58a98
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add build caching
2026-02-14 21:03:45 -05:00

40 lines
1.1 KiB
YAML

steps:
test:
image: golang:1.26
environment:
CGO_ENABLED: 0
GOOS: linux
commands:
- go test ./...
volumes:
- go_build_cache:/root/.cache/go-build
- go_mod_cache:/go/pkg/mod
build:
image: golang:1.26
environment:
CGO_ENABLED: 0
GOOS: linux
commands:
- go build .
volumes:
- go_build_cache:/root/.cache/go-build
- go_mod_cache:/go/pkg/mod
deploy:
image: docker
commands:
- apk add curl
- docker login -u docker -p $DOCKER_PASSWORD registry.yetaga.in
- docker build -t registry.yetaga.in/castor:latest .
- docker push registry.yetaga.in/castor:latest
- 'curl http://172.17.0.1:4000/api/fetch -H "Authorization: Bearer $COMPOSE_TOKEN"'
- 'curl http://172.17.0.1:4000/api/update -H "Authorization: Bearer $COMPOSE_TOKEN"'
environment:
DOCKER_PASSWORD:
from_secret: docker_password
COMPOSE_TOKEN:
from_secret: compose_token
when:
branch: "master"
volumes:
- /var/run/docker.sock:/var/run/docker.sock