-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
Slotmap capacity error #381
Comments
I've never seen that before. I will try to figure out where that is coming from this weekend. |
I suddenly started getting this as well after updating my Arch system, although only when building in a Docker container. My build script is: use std::error::Error;
use vergen::EmitBuilder;
fn main() -> Result<(), Box<dyn Error>> {
EmitBuilder::builder()
.git_branch()
.git_sha(false)
.build_date()
.rustc_semver()
.sysinfo_user()
.fail_on_error()
.emit()?;
Ok(())
} And in [build-dependencies]
vergen = { version = "8.1.3", features = ["build", "cargo", "rustc", "si", "git", "gitoxide"] } |
My CI/CD images are also based on the Arch image, with very minimal configuration, building with rustup, nightly cargo and rustc, so perhaps that could have something to do with it. (Still experiencing this error unfortunately) |
I'll try and reproduce this again this weekend. |
I wish I was able to provide more details but I'm unable to replicate this issue outside of the gitlab-runner environment-- so maybe it has to do with an environment variable gitlab introduces? Hopefully I'm not overlooking something obvious here.
I have a workspace with a few crates that each use
vergen_gix
in the following way:But I get the following errors only when building in the CICD environment.
Any ideas what would be causing a slotmap error like this?
The text was updated successfully, but these errors were encountered: