-
Notifications
You must be signed in to change notification settings - Fork 549
Open
Labels
A-contribution-workflowsArea: contribution workflowsArea: contribution workflowsA-contributor-devexArea: contributor developer experienceArea: contributor developer experienceC-CICategory: CI for this repoCategory: CI for this repoE-hardDifficulty: might require advanced knowledgeDifficulty: might require advanced knowledgeT-compilerRelevant to compiler teamRelevant to compiler teamT-infraRelevant to infra teamRelevant to infra team
Description
Sometimes the CI build fails, and when one tries running it locally, it succeeds.
@mati865 mentions here that one can build locally on linux under the same conditions as CI by doing:
DEPLOY=1 ./src/ci/docker/run.sh dist-x86_64-linux.
This other user had to use this instead:
#!/bin/bash
# Clean up from previous build
rm -rf build
# Configuration which is always enabled
export RUST_RELEASE_CHANNEL=nightly
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-native-static"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-units-std=1"
# Deploy configuration
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --release-channel=$RUST_RELEASE_CHANNEL"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-static-stdcpp"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.remap-debuginfo"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --debuginfo-level-std=1"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-llvm-assertions"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-debug-assertions"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.jemalloc"
# Configure and make
./configure $RUST_CONFIGURE_ARGS
make -j $(nproc)
we should document exactly how to try to reproduce a CI failure locally inside docker, and then how to try to reproduce it outside docker but still using all other options that are set in CI but not by default (like using jemalloc instead of the system allocator).
This information should be complemented with a fix to #443 that explains how to attach a debugger on these scenarios.
spastorino
Metadata
Metadata
Assignees
Labels
A-contribution-workflowsArea: contribution workflowsArea: contribution workflowsA-contributor-devexArea: contributor developer experienceArea: contributor developer experienceC-CICategory: CI for this repoCategory: CI for this repoE-hardDifficulty: might require advanced knowledgeDifficulty: might require advanced knowledgeT-compilerRelevant to compiler teamRelevant to compiler teamT-infraRelevant to infra teamRelevant to infra team