Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(hotfix) 0.34.3 #144

Merged
merged 1 commit into from
May 23, 2024
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ The format of this changelog is based on

## [Unreleased]

## [0.34.3] <a name="0.34.3" href="#0.34.3">-</a> May 23, 2024

- Use `--load` with `docker buildx build`. See
https://github.com/docker/buildx/issues/59#issuecomment-1168619521

## [0.34.2] <a name="0.34.2" href="#0.34.2">-</a> May 08, 2024

- Add `dependabot` as a default bypasser for the `CHANGELOG.md` check.
Expand Down Expand Up @@ -558,7 +563,8 @@ latest on the `master` branch.
- Provides basic utilities to create a CI/CD flow via the m cli.
- As a library, it facilities the creation of clis similar to m.

[unreleased]: https://github.com/jmlopez-rod/m/compare/0.34.2...HEAD
[unreleased]: https://github.com/jmlopez-rod/m/compare/0.34.3...HEAD
[0.34.3]: https://github.com/jmlopez-rod/m/compare/0.34.2...0.34.3
[0.34.2]: https://github.com/jmlopez-rod/m/compare/0.34.1...0.34.2
[0.34.1]: https://github.com/jmlopez-rod/m/compare/0.34.0...0.34.1
[0.34.0]: https://github.com/jmlopez-rod/m/compare/0.33.1...0.34.0
Expand Down
2 changes: 1 addition & 1 deletion m/m.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
owner: jmlopez-rod
repo: m
version: 0.34.2
version: 0.34.3
workflow: m_flow
build_tag_with_version: true
2 changes: 1 addition & 1 deletion packages/python/m/ci/docker/docker_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def buildx_str(self) -> str:
The docker build command.
"""
cmd = ShellCommand(
prog='docker buildx build --platform "$PLATFORM"',
prog='docker buildx build --platform "$PLATFORM" --load',
positional=['.'],
options=self.model_dump(exclude_none=True),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export DOCKER_BUILDKIT=1
set -euxo pipefail

docker buildx build --platform "$PLATFORM" \
docker buildx build --platform "$PLATFORM" --load \
--build-arg ARCH="$ARCH" \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--build-arg M_TAG= \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export DOCKER_BUILDKIT=1
set -euxo pipefail

docker buildx build --platform "$PLATFORM" \
docker buildx build --platform "$PLATFORM" --load \
--build-arg ARCH="$ARCH" \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--build-arg M_TAG= \
Expand Down