Skip to content
Open
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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,8 @@ jobs:
run: src/ci/scripts/create-doc-artifacts.sh

- name: print disk usage
# We also want to know the disk usage when the job fails.
if: always()
run: |
echo "disk usage:"
df -h
Expand Down
6 changes: 6 additions & 0 deletions src/bootstrap/src/core/build_steps/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3262,6 +3262,8 @@ fn distcheck_plain_source_tarball(builder: &Builder<'_>, plain_src_dir: &Path) {
.env("GITHUB_ACTIONS", "0")
.current_dir(plain_src_dir)
.run(builder);
// Mitigate pressure on small-capacity disks.
builder.remove_dir(plain_src_dir);
}

/// Check that rust-src has all of libstd's dependencies
Expand All @@ -3287,6 +3289,8 @@ fn distcheck_rust_src(builder: &Builder<'_>, src_dir: &Path) {
.arg(&toml)
.current_dir(src_dir)
.run(builder);
// Mitigate pressure on small-capacity disks.
builder.remove_dir(src_dir);
}

/// Check that rustc-dev's compiler crate source code can be loaded with `cargo metadata`
Expand All @@ -3311,6 +3315,8 @@ fn distcheck_rustc_dev(builder: &Builder<'_>, dir: &Path) {
.env("RUSTC", &builder.initial_rustc)
.current_dir(dir)
.run(builder);
// Mitigate pressure on small-capacity disks.
builder.remove_dir(dir);
}

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
Expand Down
2 changes: 1 addition & 1 deletion src/llvm-project
Submodule llvm-project updated 32 files
+5 −0 clang/docs/ReleaseNotes.rst
+3 −0 clang/lib/AST/ASTContext.cpp
+57 −68 clang/lib/CodeGen/Targets/Sparc.cpp
+0 −5 clang/lib/Format/TokenAnnotator.cpp
+13 −12 clang/lib/Format/UnwrappedLineParser.cpp
+18 −18 clang/lib/Headers/avx10_2bf16intrin.h
+22 −13 clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
+3 −14 clang/test/Analysis/ctor-trivial-copy.cpp
+39 −0 clang/test/Analysis/issue-157467.cpp
+2 −1 clang/test/Analysis/taint-generic.cpp
+56 −0 clang/test/CodeGen/sparcv9-abi.c
+1 −1 clang/test/CodeGenCXX/debug-info-structured-binding.cpp
+37 −1 clang/test/SemaCXX/ptrauth-type-traits.cpp
+14 −0 clang/unittests/Format/TokenAnnotatorTest.cpp
+1 −1 cmake/Modules/LLVMVersion.cmake
+24 −0 compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
+1 −1 libcxx/include/__config
+1 −1 lld/COFF/Writer.cpp
+19 −3 lld/test/COFF/strtab.s
+1 −0 llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
+191 −26 llvm/lib/Target/Mips/MipsExpandPseudo.cpp
+5 −0 llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
+2 −2 llvm/lib/Target/Sparc/DelaySlotFiller.cpp
+2 −1 llvm/lib/Target/Sparc/SparcISelLowering.cpp
+23 −0 llvm/test/CodeGen/Hexagon/unaligned-vec-store.ll
+521 −0 llvm/test/CodeGen/Mips/atomic-min-max.ll
+25 −0 llvm/test/CodeGen/SPARC/2011-01-19-DelaySlot.ll
+14 −1 llvm/test/CodeGen/SPARC/64abi.ll
+32 −0 llvm/test/Transforms/RelLookupTableConverter/nvptx.ll
+1 −1 llvm/utils/gn/secondary/llvm/version.gni
+1 −1 llvm/utils/lit/lit/__init__.py
+1 −1 llvm/utils/mlgo-utils/mlgo/__init__.py
Loading