forked from TrueCloudLab/distribution
Merge pull request #3634 from crazy-max/dev-vendor
validate and update vendor targets
This commit is contained in:
commit
edf5aa3c39
6 changed files with 116 additions and 14 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -47,7 +47,6 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
DCO_VERBOSITY=-q script/validate/dco
|
DCO_VERBOSITY=-q script/validate/dco
|
||||||
GO111MODULE=on script/setup/install-dev-tools
|
GO111MODULE=on script/setup/install-dev-tools
|
||||||
script/validate/vendor
|
|
||||||
go build -i .
|
go build -i .
|
||||||
make check
|
make check
|
||||||
make build
|
make build
|
||||||
|
|
29
.github/workflows/validate.yml
vendored
Normal file
29
.github/workflows/validate.yml
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
name: validate
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
- 'release/*'
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
validate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
target:
|
||||||
|
- validate-vendor
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
-
|
||||||
|
name: Run
|
||||||
|
run: |
|
||||||
|
make ${{ matrix.target }}
|
15
Makefile
15
Makefile
|
@ -38,7 +38,7 @@ BINARIES=$(addprefix bin/,$(COMMANDS))
|
||||||
TESTFLAGS ?= -v $(TESTFLAGS_RACE)
|
TESTFLAGS ?= -v $(TESTFLAGS_RACE)
|
||||||
TESTFLAGS_PARALLEL ?= 8
|
TESTFLAGS_PARALLEL ?= 8
|
||||||
|
|
||||||
.PHONY: all build binaries check clean test test-race test-full integration coverage
|
.PHONY: all build binaries check clean test test-race test-full integration coverage validate-vendor vendor mod-outdated
|
||||||
.DEFAULT: all
|
.DEFAULT: all
|
||||||
|
|
||||||
all: binaries
|
all: binaries
|
||||||
|
@ -100,3 +100,16 @@ build:
|
||||||
clean: ## clean up binaries
|
clean: ## clean up binaries
|
||||||
@echo "$(WHALE) $@"
|
@echo "$(WHALE) $@"
|
||||||
@rm -f $(BINARIES)
|
@rm -f $(BINARIES)
|
||||||
|
|
||||||
|
validate-vendor: ## validate vendor
|
||||||
|
docker buildx bake validate-vendor
|
||||||
|
|
||||||
|
vendor: ## update vendor
|
||||||
|
$(eval $@_TMP_OUT := $(shell mktemp -d -t buildx-output.XXXXXXXXXX))
|
||||||
|
docker buildx bake --set "*.output=$($@_TMP_OUT)" update-vendor
|
||||||
|
rm -rf ./vendor
|
||||||
|
cp -R "$($@_TMP_OUT)"/out/* .
|
||||||
|
rm -rf $($@_TMP_OUT)/*
|
||||||
|
|
||||||
|
mod-outdated: ## check outdated dependencies
|
||||||
|
docker buildx bake mod-outdated
|
||||||
|
|
|
@ -19,6 +19,33 @@ target "docker-metadata-action" {
|
||||||
tags = ["registry:local"]
|
tags = ["registry:local"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
group "validate" {
|
||||||
|
targets = ["validate-vendor"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "validate-vendor" {
|
||||||
|
dockerfile = "./dockerfiles/vendor.Dockerfile"
|
||||||
|
target = "validate"
|
||||||
|
output = ["type=cacheonly"]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "update-vendor" {
|
||||||
|
dockerfile = "./dockerfiles/vendor.Dockerfile"
|
||||||
|
target = "update"
|
||||||
|
output = ["."]
|
||||||
|
}
|
||||||
|
|
||||||
|
target "mod-outdated" {
|
||||||
|
dockerfile = "./dockerfiles/vendor.Dockerfile"
|
||||||
|
target = "outdated"
|
||||||
|
args = {
|
||||||
|
// used to invalidate cache for outdated run stage
|
||||||
|
// can be dropped when https://github.com/moby/buildkit/issues/1213 fixed
|
||||||
|
_RANDOM = uuidv4()
|
||||||
|
}
|
||||||
|
output = ["type=cacheonly"]
|
||||||
|
}
|
||||||
|
|
||||||
target "binary" {
|
target "binary" {
|
||||||
inherits = ["_common"]
|
inherits = ["_common"]
|
||||||
target = "binary"
|
target = "binary"
|
||||||
|
|
46
dockerfiles/vendor.Dockerfile
Normal file
46
dockerfiles/vendor.Dockerfile
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
|
ARG GO_VERSION=1.17
|
||||||
|
ARG MODOUTDATED_VERSION=v0.8.0
|
||||||
|
|
||||||
|
FROM golang:${GO_VERSION}-alpine AS base
|
||||||
|
RUN apk add --no-cache git rsync
|
||||||
|
WORKDIR /src
|
||||||
|
|
||||||
|
FROM base AS vendored
|
||||||
|
RUN --mount=target=/context \
|
||||||
|
--mount=target=.,type=tmpfs \
|
||||||
|
--mount=target=/go/pkg/mod,type=cache <<EOT
|
||||||
|
set -e
|
||||||
|
rsync -a /context/. .
|
||||||
|
go mod tidy
|
||||||
|
go mod vendor
|
||||||
|
mkdir /out
|
||||||
|
cp -r go.mod go.sum vendor /out
|
||||||
|
EOT
|
||||||
|
|
||||||
|
FROM scratch AS update
|
||||||
|
COPY --from=vendored /out /out
|
||||||
|
|
||||||
|
FROM vendored AS validate
|
||||||
|
RUN --mount=target=/context \
|
||||||
|
--mount=target=.,type=tmpfs <<EOT
|
||||||
|
set -e
|
||||||
|
rsync -a /context/. .
|
||||||
|
git add -A
|
||||||
|
rm -rf vendor
|
||||||
|
cp -rf /out/* .
|
||||||
|
if [ -n "$(git status --porcelain -- go.mod go.sum vendor)" ]; then
|
||||||
|
echo >&2 'ERROR: Vendor result differs. Please vendor your package with "make vendor"'
|
||||||
|
git status --porcelain -- go.mod go.sum vendor
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
EOT
|
||||||
|
|
||||||
|
FROM psampaz/go-mod-outdated:${MODOUTDATED_VERSION} AS go-mod-outdated
|
||||||
|
FROM base AS outdated
|
||||||
|
ARG _RANDOM
|
||||||
|
RUN --mount=target=.,ro \
|
||||||
|
--mount=target=/go/pkg/mod,type=cache \
|
||||||
|
--mount=from=go-mod-outdated,source=/home/go-mod-outdated,target=/usr/bin/go-mod-outdated \
|
||||||
|
go list -mod=readonly -u -m -json all | go-mod-outdated -update -direct
|
|
@ -1,12 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -eu -o pipefail
|
|
||||||
|
|
||||||
echo "- Checking for any unused/missing packages in go.mod..."
|
|
||||||
GO111MODULE=on go mod tidy
|
|
||||||
echo "- Checking for unused packages in vendor..."
|
|
||||||
GO111MODULE=on go mod vendor
|
|
||||||
git diff --exit-code -- go.sum go.mod vendor/
|
|
||||||
|
|
||||||
untracked=$(git ls-files --others vendor | wc -l | awk '{ print $1 }')
|
|
||||||
[[ "${untracked}" == "0" ]]
|
|
Loading…
Reference in a new issue