add build script

This commit is contained in:
David 2022-04-24 12:43:46 -04:00
parent cecb29f382
commit 404e7da984
4 changed files with 27 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
*.pem *.pem
castor castor
root
.DS_Store .DS_Store

24
.woodpecker.yml Normal file
View File

@ -0,0 +1,24 @@
pipeline:
build:
image: docker
environment:
- DOCKER_HOST=tcp://docker:2375
commands:
- apk add curl
- 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/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"'
secrets: [docker_username, docker_password, compose_token]
when:
branch: "master"
services:
docker:
image: docker:18.09-dind
command: ["--storage-driver=vfs"]
privileged: true
when:
branch: master

View File

@ -1,4 +1,4 @@
FROM golang:1.15 as builder FROM golang:1.18 as builder
COPY . /castor COPY . /castor
RUN cd /castor && CGO_ENABLED=0 go build RUN cd /castor && CGO_ENABLED=0 go build

2
go.mod
View File

@ -1,3 +1,3 @@
module git.yetaga.in/alazyreader/castor module git.yetaga.in/alazyreader/castor
go 1.15 go 1.18