Compare commits

..

3 Commits

Author SHA1 Message Date
ed9cbeba37 update .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
2020-02-25 09:10:54 -08:00
c5ca5cc479 remove comment 2020-02-25 09:08:51 -08:00
88d09f3419 should CI now 2020-02-25 09:08:42 -08:00
3 changed files with 43 additions and 1 deletions

18
.drone.yml Normal file
View File

@@ -0,0 +1,18 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
build_args:
repo: sneak/sircd
username:
from_secret: docker_username
password:
from_secret: docker_password
tags:
- ${DRONE_BRANCH//\//-}-${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_SHA}
- ${DRONE_BRANCH/\//-}
- latest

24
Dockerfile Normal file
View 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

View File

@@ -17,6 +17,7 @@ func (s *ircd) processIRCMessage(m *ircMessage) {
} }
func (s *ircd) sayHello(c *ircClient) { func (s *ircd) sayHello(c *ircClient) {
panic("not implemented")
//001 welcome //001 welcome
//002 host/version decl //002 host/version decl
//003, 004, 005, 251, 252, 253, 254, 255, 256, 266 //003, 004, 005, 251, 252, 253, 254, 255, 256, 266
@@ -96,5 +97,4 @@ func (s *ircd) processUSERCommand(m *ircMessage) {
func (s *ircd) processCAPCommand(m *ircMessage) { func (s *ircd) processCAPCommand(m *ircMessage) {
s.log.Debugln("ignoring CAP command, unsupported") s.log.Debugln("ignoring CAP command, unsupported")
// pass
} }