Update golang (#46458)

pull/46468/head
Dimitris Sotirakis 3 years ago committed by GitHub
parent 82b436afee
commit a29159f362
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 400
      .drone.yml
  2. 2
      Dockerfile
  3. 2
      Dockerfile.ubuntu
  4. 2
      scripts/build/ci-build/Dockerfile
  5. 4
      scripts/drone/steps/lib.star

File diff suppressed because it is too large Load Diff

@ -20,7 +20,7 @@ COPY emails emails
ENV NODE_ENV production ENV NODE_ENV production
RUN yarn build RUN yarn build
FROM golang:1.17.7-alpine3.15 as go-builder FROM golang:1.17.8-alpine3.15 as go-builder
RUN apk add --no-cache gcc g++ make RUN apk add --no-cache gcc g++ make

@ -21,7 +21,7 @@ COPY emails emails
ENV NODE_ENV production ENV NODE_ENV production
RUN yarn build RUN yarn build
FROM golang:1.17.7 AS go-builder FROM golang:1.17.8 AS go-builder
WORKDIR /src/grafana WORKDIR /src/grafana

@ -110,7 +110,7 @@ RUN rm dockerize-linux-amd64-v${DOCKERIZE_VERSION}.tar.gz
# Use old Debian (this has support into 2022) in order to ensure binary compatibility with older glibc's. # Use old Debian (this has support into 2022) in order to ensure binary compatibility with older glibc's.
FROM debian:stretch-20210208 FROM debian:stretch-20210208
ENV GOVERSION=1.17.7 \ ENV GOVERSION=1.17.8 \
PATH=/usr/local/go/bin:$PATH \ PATH=/usr/local/go/bin:$PATH \
GOPATH=/go \ GOPATH=/go \
NODEVERSION=16.14.0-1nodesource1 \ NODEVERSION=16.14.0-1nodesource1 \

@ -1,7 +1,7 @@
load('scripts/drone/vault.star', 'from_secret', 'github_token', 'pull_secret', 'drone_token', 'prerelease_bucket') load('scripts/drone/vault.star', 'from_secret', 'github_token', 'pull_secret', 'drone_token', 'prerelease_bucket')
grabpl_version = 'v2.9.24' grabpl_version = 'v2.9.25'
build_image = 'grafana/build-container:1.5.2' build_image = 'grafana/build-container:1.5.3'
publish_image = 'grafana/grafana-ci-deploy:1.3.1' publish_image = 'grafana/grafana-ci-deploy:1.3.1'
deploy_docker_image = 'us.gcr.io/kubernetes-dev/drone/plugins/deploy-image' deploy_docker_image = 'us.gcr.io/kubernetes-dev/drone/plugins/deploy-image'
alpine_image = 'alpine:3.15' alpine_image = 'alpine:3.15'

Loading…
Cancel
Save