Skip to content

Commit

Permalink
Merge pull request #144 from jmlopez-rod/hotfix/0.34.3
Browse files Browse the repository at this point in the history
(hotfix) 0.34.3
  • Loading branch information
jmlopez-rod authored May 23, 2024
2 parents 9f16213 + dd3228b commit 3b5ed77
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
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

0 comments on commit 3b5ed77

Please sign in to comment.