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
5
5
6
6
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS build
7
7
RUN apk add --no-cache \
8
+ bash \
8
9
build-base \
9
10
git \
10
- util-linux \
11
- bash
11
+ util-linux
12
12
WORKDIR /go/src/github.com/docker/lunchbox/
13
13
COPY . .
14
14
Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ pipeline {
52
52
environment {
53
53
CODECOV_TOKEN = credentials(' jenkins-codecov-token' )
54
54
}
55
-
56
55
agent {
57
56
label ' gcp-linux-worker-0'
58
57
}
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ coverage: coverage-bin
90
90
@echo " Running e2e tests (coverage)..."
91
91
DOCKERAPP_BINARY=../e2e/coverage-bin $(GO_TEST ) -v ./e2e
92
92
@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')
94
94
gocovmerge _build/cov/* .out > _build/cov/all.out
95
95
go tool cover -func _build/cov/all.out
96
96
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