Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit d4ddc16

Browse files
committed
cleanup
Signed-off-by: Joffrey F <[email protected]>
1 parent 8095120 commit d4ddc16

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ ARG TAG=unknown
55

66
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS build
77
RUN apk add --no-cache \
8+
bash \
89
build-base \
910
git \
10-
util-linux \
11-
bash
11+
util-linux
1212
WORKDIR /go/src/github.com/docker/lunchbox/
1313
COPY . .
1414

Jenkinsfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)