Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ definition to build and push packages in two steps:
```shell
# build all packages for buildx v0.9.1 and output to ./bin folder
$ cd pkg/buildx/
$ BUILDX_VERSION=v0.9.1 make pkg
$ BUILDX_VERSION=v0.9.1 make all
# build and push image to dockereng/packaging:buildx-v0.9.1 using bake.
# "release" target will use the "bin" folder as named context to create the
# image with artifacts previously built with make.
Expand Down
2 changes: 1 addition & 1 deletion pkg/credential-helpers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ EOF
xx-go --wrap
set -x
chmod -x debian/compat debian/control debian/docs
dpkg-buildpackage -us -uc -a$(xx-info debian-arch) -Pcross,nocheck
dpkg-buildpackage -us -uc
pkgoutput="/out/${PKG_DISTRO}/${PKG_SUITE}/$(xx-info arch)"
if [ -n "$(xx-info variant)" ]; then
pkgoutput="${pkgoutput}/$(xx-info variant)"
Expand Down
2 changes: 1 addition & 1 deletion pkg/docker-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ EOF
xx-go --wrap
set -x
chmod -x debian/compat debian/control debian/docs debian/*.bash-completion debian/*.manpages
dpkg-buildpackage -us -uc -a$(xx-info debian-arch) -Pcross,nocheck
dpkg-buildpackage -us -uc
pkgoutput="/out/${PKG_DISTRO}/${PKG_SUITE}/$(xx-info arch)"
if [ -n "$(xx-info variant)" ]; then
pkgoutput="${pkgoutput}/$(xx-info variant)"
Expand Down
3 changes: 3 additions & 0 deletions pkg/docker-cli/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ $(info $$BASEDIR = $(BASEDIR))
$(info $$DOCKER_CLI_REPO = $(DOCKER_CLI_REPO))
$(info $$DOCKER_CLI_VERSION = $(DOCKER_CLI_VERSION))

export PKG_DEB_REVISION = 3
export PKG_RPM_RELEASE = 3

.PHONY: all
all: pkg

Expand Down