mirror of https://github.com/statping/statping
golang 1.13.5
parent
749b591067
commit
9bed8e3d23
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue