should CI now
This commit is contained in:
parent
674215d0cc
commit
88d09f3419
16
.drone.yml
Normal file
16
.drone.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: docker
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
repo: sneak/sircd
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
auto_tag: true
|
||||||
|
tags:
|
||||||
|
- ${DRONE_COMMIT_SHA}
|
||||||
|
- ${DRONE_BRANCH}
|
24
Dockerfile
Normal file
24
Dockerfile
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
FROM golang:1.13 as builder
|
||||||
|
|
||||||
|
WORKDIR /go/src/git.eeqj.de/sneak/sircd
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
#RUN make lint && make build
|
||||||
|
RUN make build
|
||||||
|
|
||||||
|
WORKDIR /go
|
||||||
|
RUN tar cvfz go-src.tgz src && du -sh *
|
||||||
|
|
||||||
|
# this container doesn't do anything except hold the build artifact
|
||||||
|
# and make sure it compiles.
|
||||||
|
|
||||||
|
FROM alpine
|
||||||
|
|
||||||
|
COPY --from=builder /go/src/git.eeqj.de/sneak/sircd/sircd /bin/sircd
|
||||||
|
|
||||||
|
# put the source in there too for safekeeping
|
||||||
|
COPY --from=builder /go/go-src.tgz /usr/local/src/go-src.tgz
|
||||||
|
|
||||||
|
CMD /bin/sircd
|
||||||
|
|
||||||
|
# FIXME add testing
|
Loading…
Reference in New Issue
Block a user