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
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ exclude = [
libraries = [{ path = "dylints/*" }]

[workspace.package]
version = "2.5.19"
version = "2.5.20"
edition = "2021"
rust-version = "1.95.0"
license = "AGPL-3.0-only"
Expand Down
8 changes: 4 additions & 4 deletions crates/fbuild-toolchain/src/toolchain/esp_qemu_runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,13 @@ fn runtime_arch(host: HostPlatform) -> Result<&'static str> {
/// SHA-256 of each published bundle. An architecture without an entry has no
/// bundle yet: report that plainly instead of downloading something unpinned.
///
/// aarch64 is built by `.github/workflows/qemu-runtime-bundle.yml` on a native
/// arm64 runner — Docker Desktop's arm64 emulation cannot run dpkg's
/// maintainer scripts, so it cannot be produced from an x86_64 developer
/// workstation the way the x86_64 bundle was.
/// Both are built by `.github/workflows/qemu-runtime-bundle.yml`; aarch64 needs
/// its native arm64 runner because Docker Desktop's arm64 emulation cannot run
/// dpkg's maintainer scripts.
fn runtime_sha256(arch: &str) -> Result<&'static str> {
match arch {
"x86_64" => Ok("b3318ccf60df8e17a42b5b0f61180440f56337fadb0babe867bff1f3dfecd99f"),
"aarch64" => Ok("1782782a25f1a375c03bcdc1aafb7444f46d5f2fa40d66793dd530b76c62da0a"),
other => Err(FbuildError::PackageError(format!(
"no QEMU runtime-library bundle is published for linux-{other} yet (tracked in the {RUNTIME_RELEASE_TAG} release).\n\
Install the QEMU runtime libraries from your distribution — on Debian/Ubuntu: libslirp0, libsdl2-2.0-0, libpixman-1-0."
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fbuild"
version = "2.5.19"
version = "2.5.20"
description = "PlatformIO-compatible embedded build tool (Rust implementation)"
readme = "README.md"
license = "AGPL-3.0-only"
Expand Down
Loading