···11-From 44c2c979c4f2222567ce65f506cf47fb87482348 Mon Sep 17 00:00:00 2001
22-From: Pontus Stenetorp <pontus@stenetorp.se>
33-Date: Thu, 8 Apr 2021 04:37:44 +0000
44-Subject: [PATCH 5/6] nix: Enable parallel unit tests for sandbox
55-66-Disabled by default due to lack of networking in the Nix sandbox. This
77-greatly speeds up the build process on a multi-core system.
88----
99- test/runtests.jl | 5 +++--
1010- 1 file changed, 3 insertions(+), 2 deletions(-)
1111-1212-diff --git a/test/runtests.jl b/test/runtests.jl
1313-index 2f9cd058bb..2f8c19fa32 100644
1414---- a/test/runtests.jl
1515-+++ b/test/runtests.jl
1616-@@ -83,8 +83,9 @@ prepend!(tests, linalg_tests)
1717- import LinearAlgebra
1818- cd(@__DIR__) do
1919- n = 1
2020-- if net_on
2121-- n = min(Sys.CPU_THREADS, length(tests))
2222-+ if net_on || haskey(ENV, "NIX_BUILD_CORES")
2323-+ x = haskey(ENV, "NIX_BUILD_CORES") ? parse(Int, ENV["NIX_BUILD_CORES"]) : Sys.CPU_THREADS
2424-+ n = min(x, Sys.CPU_THREADS, length(tests))
2525- n > 1 && addprocs_with_testenv(n)
2626- LinearAlgebra.BLAS.set_num_threads(1)
2727- end
2828---
2929-2.29.3
3030-
+1
pkgs/top-level/aliases.nix
···766766 jsawk = throw "'jsawk' has been removed because it is unmaintained upstream"; # Added 2028-08-07
767767768768 # Julia
769769+ julia_16-bin = throw "'julia_16-bin' has been removed from nixpkgs as it has reached end of life"; # Added 2024-10-08
769770 julia_18 = throw "'julia_18' has been removed from nixpkgs as it has reached end of life"; # Added 2024-01-11
770771 julia_18-bin = throw "'julia_18-bin' has been removed from nixpkgs as it has reached end of life"; # Added 2024-01-11
771772