This repository was archived by the owner on Jul 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ ARG TAG=unknown
55
66FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS build
77RUN apk add --no-cache \
8+ bash \
89 build-base \
910 git \
10- util-linux \
11- bash
11+ util-linux
1212WORKDIR /go/src/github.com/docker/lunchbox/
1313COPY . .
1414
Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ pipeline {
5252 environment {
5353 CODECOV_TOKEN = credentials(' jenkins-codecov-token' )
5454 }
55-
5655 agent {
5756 label ' gcp-linux-worker-0'
5857 }
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ coverage: coverage-bin
9090 @echo " Running e2e tests (coverage)..."
9191 DOCKERAPP_BINARY=../e2e/coverage-bin $(GO_TEST ) -v ./e2e
9292 @echo " Running unit tests (coverage)..."
93- $(GO_TEST ) -cover -test.coverprofile=_build/cov/unit.out $(shell go list ./... | grep -vE '/vendor/|/ e2e')
93+ $(GO_TEST ) -cover -test.coverprofile=_build/cov/unit.out $(shell go list ./... | grep -vE '/e2e')
9494 gocovmerge _build/cov/* .out > _build/cov/all.out
9595 go tool cover -func _build/cov/all.out
9696 go tool cover -html _build/cov/all.out -o _build/cov/coverage.html
You can’t perform that action at this time.
0 commit comments