This repository was archived by the owner on Jul 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ pipeline {
60
60
dir(' src/github.com/docker/lunchbox' ) {
61
61
checkout scm
62
62
sh ' make ci-coverage'
63
- archiveArtifacts ' cov/all.out'
64
- archiveArtifacts ' cov/coverage.html'
65
- sh ' curl -s https://codecov.io/bash | bash -s - -f cov/all.out -K'
63
+ archiveArtifacts ' _build/ci- cov/all.out'
64
+ archiveArtifacts ' _build/ci- cov/coverage.html'
65
+ sh ' curl -s https://codecov.io/bash | bash -s - -f _build/ci- cov/all.out -K'
66
66
}
67
67
}
68
68
}
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ ci-test:
116
116
ci-coverage :
117
117
docker build --target=build -t $(IMAGE_NAME ) -cov:$(TAG ) $(IMAGE_BUILD_ARGS ) .
118
118
docker run --label $(COV_LABEL ) $(IMAGE_NAME ) -cov:$(TAG ) make COMMIT=$(TAG ) TAG=$(COMMIT ) coverage
119
- docker cp $$(docker ps -aql --filter label=$(COV_LABEL ) ) :$(PKG_PATH ) /_build/cov/ ./cov
119
+ mkdir -p ./_build && docker cp $$(docker ps -aql --filter label=$(COV_LABEL ) ) :$(PKG_PATH ) /_build/cov/ ./_build/ci- cov
120
120
121
121
ci-bin-all :
122
122
docker build -t $(IMAGE_NAME ) -bin-all:$(TAG ) $(IMAGE_BUILD_ARGS ) . --target=bin-build
You can’t perform that action at this time.
0 commit comments