Commit 7aa6e249 authored by Sergey Volkov's avatar Sergey Volkov
Browse files

julia_112-bin: init at 1.12.1

parent 65d48268
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -51,6 +51,17 @@ in
      };
    }) { }
  );
  julia_112-bin = wrapJulia (
    callPackage (import ./generic-bin.nix {
      version = "1.12.1";
      sha256 = {
        x86_64-linux = "7d2add9ee74ee2f12b5c268bc194794cc52ea440f8687fbab29db6afefbf69b7";
        aarch64-linux = "2e3d6ca07e251721fa3e0cd3460fc240e60f2a9bd97bae0ea2144f586da19297";
        x86_64-darwin = "7dd841cd853ad64f5e90a4b459631b49ee388891ceaba81857f5b8959392c4b2";
        aarch64-darwin = "cc65620b71a725380e59d0e31dc0b4140f30229b70a4b8eec8e32c222bc54fc1";
      };
    }) { }
  );
  julia_19 = wrapJulia (
    callPackage (import ./generic.nix {
      version = "1.9.4";
+10 −3
Original line number Diff line number Diff line
@@ -15,9 +15,6 @@ let
  skip_tests = [
    # Test flaky on ofborg
    "channels"
    # Test flaky because of our RPATH patching
    # https://github.com/NixOS/nixpkgs/pull/230965#issuecomment-1545336489
    "compiler/codegen"
    # Test flaky
    "read"
  ]
@@ -34,6 +31,16 @@ let
    "loading"
    "cmdlineargs"
  ]
  ++ lib.optionals (lib.versionAtLeast version "1.12") [
    # Test flaky because of our RPATH patching
    # https://github.com/NixOS/nixpkgs/pull/230965#issuecomment-1545336489
    "Compiler/codegen"
    "precompile"
    "compileall"
  ]
  ++ lib.optionals (lib.versionOlder version "1.12") [
    "compiler/codegen" # older versions' test was in lowercase
  ]
  ++ lib.optionals stdenv.hostPlatform.isDarwin [
    # Test flaky on ofborg
    "FileWatching"
+2 −1
Original line number Diff line number Diff line
@@ -5180,6 +5180,7 @@ with pkgs;
    julia_19-bin
    julia_110-bin
    julia_111-bin
    julia_112-bin
    julia_19
    julia_110
    julia_111
@@ -5190,7 +5191,7 @@ with pkgs;
  julia = julia-stable;

  julia-lts-bin = julia_110-bin;
  julia-stable-bin = julia_111-bin;
  julia-stable-bin = julia_112-bin;
  julia-bin = julia-stable-bin;

  kotlin = callPackage ../development/compilers/kotlin { };