pull/351/head^2
iwilltry42 4 years ago
parent d7b25ac6ab
commit ec79db4ef5
No known key found for this signature in database
GPG Key ID: 7BA57AD1CFF16110
  1. 4
      .drone.yml
  2. 2
      Dockerfile
  3. 2
      go.mod
  4. 2
      tools/Dockerfile
  5. 2
      tools/go.mod

@ -14,7 +14,7 @@ platform:
steps: steps:
- name: lint - name: lint
image: golang:1.14 image: golang:1.15
commands: commands:
- make ci-setup - make ci-setup
- make check-fmt lint - make check-fmt lint
@ -40,7 +40,7 @@ steps:
- tag - tag
- name: build - name: build
image: golang:1.14 image: golang:1.15
environment: environment:
GIT_TAG: "${DRONE_TAG}" GIT_TAG: "${DRONE_TAG}"
commands: commands:

@ -1,4 +1,4 @@
FROM golang:1.14 as builder FROM golang:1.15 as builder
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN make build && bin/k3d version RUN make build && bin/k3d version

@ -1,6 +1,6 @@
module github.com/rancher/k3d/v4 module github.com/rancher/k3d/v4
go 1.14 go 1.15
require ( require (
github.com/Microsoft/hcsshim v0.8.9 // indirect github.com/Microsoft/hcsshim v0.8.9 // indirect

@ -1,4 +1,4 @@
FROM golang:1.14 as builder FROM golang:1.15 as builder
ARG GIT_TAG ARG GIT_TAG
WORKDIR /app WORKDIR /app
COPY . . COPY . .

@ -1,6 +1,6 @@
module github.com/rancher/k3d/tools module github.com/rancher/k3d/tools
go 1.14 go 1.15
require ( require (
github.com/Microsoft/go-winio v0.4.12 // indirect github.com/Microsoft/go-winio v0.4.12 // indirect

Loading…
Cancel
Save