library/.woodpecker.yml
David Ashby b3be76d478
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
hmm
2022-04-20 20:21:09 -04:00

34 lines
949 B
YAML

pipeline:
test:
image: golang:1.17
commands:
- go test ./...
build:
image: docker
environment:
- DOCKER_HOST=tcp://docker:2375
commands:
- sleep 5 # wait for docker service to come up
- docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD registry.yetaga.in
- docker build -t registry.yetaga.in/library:latest .
- docker push registry.yetaga.in/library:latest
secrets: [docker_username, docker_password]
when:
branch: "master"
routing:
image: docker
commands:
- "curl http://yetagain:4000/api/ps -H 'Authorization: Bearer ${COMPOSE_TOKEN}' || true"
- "curl http://localhost:4000/api/ps -H 'Authorization: Bearer ${COMPOSE_TOKEN}' || true"
secrets: [COMPOSE_TOKEN]
when:
branch: "test-woodpecker"
services:
docker:
image: docker:18.09-dind
command: ["--storage-driver=vfs"]
privileged: true
when:
branch: master