We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cross in the Docker image ghcr.io/cross-rs/cross:main shows wrong version (0.2.5, without commit info).
ghcr.io/cross-rs/cross:main
0.2.5
This version is used as the default version for build images:
cross/src/docker/shared.rs
Lines 29 to 33 in 4090bec
So, outdated build images are used. For example, ghcr.io/cross-rs/x86_64-unknown-linux-gnu:0.2.5 is used instead of ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main.
ghcr.io/cross-rs/x86_64-unknown-linux-gnu:0.2.5
ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main
docker pull ghcr.io/cross-rs/cross:main docker run -it ghcr.io/cross-rs/cross:edge cross --version
$ docker run -it ghcr.io/cross-rs/cross:edge cross --version cross 0.2.5
$ docker run -it ghcr.io/cross-rs/cross:edge cross --version cross 0.2.5 (4090bec 2024-10-15)
Configure build images explicitly for every target:
[package.metadata.cross.target.x86_64-unknown-linux-gnu] image = "ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main"
CROSS_TARGET_X86_64_UNKNOWN_LINUX_GNU_IMAGE=ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem description
cross in the Docker image
ghcr.io/cross-rs/cross:main
shows wrong version (0.2.5
, without commit info).Impact
This version is used as the default version for build images:
cross/src/docker/shared.rs
Lines 29 to 33 in 4090bec
So, outdated build images are used. For example,
ghcr.io/cross-rs/x86_64-unknown-linux-gnu:0.2.5
is used instead ofghcr.io/cross-rs/x86_64-unknown-linux-gnu:main
.Steps to reproduce
Actual result
Expected result
Workaround
Configure build images explicitly for every target:
The text was updated successfully, but these errors were encountered: