Skip to content

Commit a6ee949

Browse files
authored
Merge pull request #62218 from JuliaLang/backports-release-1.10
Backports for 1.10
2 parents 53b0c2e + 8ce401f commit a6ee949

7 files changed

Lines changed: 30 additions & 26 deletions

File tree

deps/checksums/SparseArrays-248d9f94cf31d9668e5b07f237f13a239472b2ec.tar.gz/md5

Lines changed: 0 additions & 1 deletion
This file was deleted.

deps/checksums/SparseArrays-248d9f94cf31d9668e5b07f237f13a239472b2ec.tar.gz/sha512

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b27abe6198efcf75c08e7737800670cc
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b160ec5c0d291150710320a1a6b54c01bbdd81ee75dd2662ed1c747177fef19b8ba62b7fca2b65b2092d5283f4af2aa2c58c940ae2185315d193b116a90b0b83

doc/Manifest.toml

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stdlib/SparseArrays.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
SPARSEARRAYS_BRANCH = release-1.10
2-
SPARSEARRAYS_SHA1 = 248d9f94cf31d9668e5b07f237f13a239472b2ec
2+
SPARSEARRAYS_SHA1 = 64e166f7dedb855c52c51b390597a87be454017b
33
SPARSEARRAYS_GIT_URL := https://github.com/JuliaSparse/SparseArrays.jl.git
44
SPARSEARRAYS_TAR_URL = https://api.github.com/repos/JuliaSparse/SparseArrays.jl/tarball/$1

test/runtests.jl

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,16 @@ move_to_node1("stress")
8484
# since it starts a lot of workers and can easily exceed the maximum memory
8585
limited_worker_rss && move_to_node1("Distributed")
8686

87-
# Shuffle LinearAlgebra tests to the front, because they take a while, so we might
88-
# as well get them all started early.
89-
linalg_test_ids = findall(x->occursin("LinearAlgebra", x), tests)
90-
linalg_tests = tests[linalg_test_ids]
91-
deleteat!(tests, linalg_test_ids)
92-
prepend!(tests, linalg_tests)
87+
# Move LinearAlgebra and SparseArrays tests to the front, because they take a
88+
# while, so we might as well get them all started early. SparseArrays in particular
89+
# runs as a single test set for close to an hour on slow platforms (e.g. i686) and
90+
# dominates the critical path if started late.
91+
for prependme in ["LinearAlgebra", "SparseArrays"]
92+
prependme_test_ids = findall(x->occursin(prependme, x), tests)
93+
prependme_tests = tests[prependme_test_ids]
94+
deleteat!(tests, prependme_test_ids)
95+
prepend!(tests, prependme_tests)
96+
end
9397

9498
import LinearAlgebra
9599
cd(@__DIR__) do

0 commit comments

Comments
 (0)