golang 1.13.5

pull/335/head
hunterlong 2019-12-28 01:39:35 -08:00
parent 749b591067
commit 9bed8e3d23
5 changed files with 5 additions and 10 deletions

View File

@ -2,7 +2,7 @@ os:
- linux
language: go
go: 1.13
go: 1.13.5
go_import_path: github.com/hunterlong/statping
cache:
@ -43,10 +43,6 @@ branches:
- master
- dev
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
install:
- npm install -g sass
- npm install -g newman

View File

@ -1,4 +1,4 @@
FROM golang:1.13-alpine as base
FROM golang:1.13.5-alpine as base
LABEL maintainer="Hunter Long (https://github.com/hunterlong)"
ARG VERSION
RUN apk add --no-cache libstdc++ gcc g++ make git ca-certificates linux-headers wget curl jq libsass

View File

@ -5,7 +5,7 @@ GOCMD=go
GOBUILD=$(GOCMD) build -a
GOTEST=$(GOCMD) test
GOGET=$(GOCMD) get
GOVERSION=1.13.1
GOVERSION=1.13.5
GOINSTALL=$(GOCMD) install
GOPATH:=$(GOPATH)
XGO=$(GOPATH) xgo -go $(GOVERSION) --dest=build

3
dev/Dockerfile vendored
View File

@ -1,7 +1,6 @@
FROM golang:1.13-alpine as base
FROM golang:1.13.5-alpine as base
LABEL maintainer="Hunter Long (https://github.com/hunterlong)"
ARG VERSION
ENV DEP_VERSION v0.5.0
RUN apk add --no-cache libstdc++ gcc g++ make git ca-certificates linux-headers wget curl jq
RUN curl -L -s https://assets.statping.com/sass -o /usr/local/bin/sass && \
chmod +x /usr/local/bin/sass

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/hunterlong/statping
go 1.13
go 1.13.5
require (
github.com/99designs/gqlgen v0.10.1