Skip to content

Commit e69ab98

Browse files
authored
Update Go shard to 1.16.3 (#131)
* Update Go shard to 1.16.3 * Trim whitespace
1 parent 807763e commit e69ab98

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

Artifacts.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2044,6 +2044,28 @@ os = "linux"
20442044
sha256 = "b8488f009c117eb7135b2ac139009836518587aacea772eba83271c794afa420"
20452045
url = "https://github.com/JuliaPackaging/Yggdrasil/releases/download/Go-v1.13.0+0/Go.v1.13.0.x86_64-linux-musl.unpacked.tar.gz"
20462046

2047+
[["Go.v1.16.3.x86_64-linux-musl.squashfs"]]
2048+
arch = "x86_64"
2049+
git-tree-sha1 = "3a85d82c6b7bb04cc5fd9c206a40071a85a8ab33"
2050+
lazy = true
2051+
libc = "musl"
2052+
os = "linux"
2053+
2054+
[["Go.v1.16.3.x86_64-linux-musl.squashfs".download]]
2055+
sha256 = "3c51d29fc653f41c8e4a9fa52444deefc984e146426db7e87065ebb50a129a0a"
2056+
url = "https://github.com/JuliaPackaging/Yggdrasil/releases/download/Go-v1.16.3/Go.v1.16.3.x86_64-linux-musl.squashfs.tar.gz"
2057+
2058+
[["Go.v1.16.3.x86_64-linux-musl.unpacked"]]
2059+
arch = "x86_64"
2060+
git-tree-sha1 = "899505c8af5679696acf1b476a16b5696f5caf24"
2061+
lazy = true
2062+
libc = "musl"
2063+
os = "linux"
2064+
2065+
[["Go.v1.16.3.x86_64-linux-musl.unpacked".download]]
2066+
sha256 = "a5b4ad9807ad4c16a8df91ebc763d75b766edeed12a83f2f608a38081f53e82e"
2067+
url = "https://github.com/JuliaPackaging/Yggdrasil/releases/download/Go-v1.16.3/Go.v1.16.3.x86_64-linux-musl.unpacked.tar.gz"
2068+
20472069
[["LLVMBootstrap.v11.0.1.x86_64-linux-musl.squashfs"]]
20482070
arch = "x86_64"
20492071
git-tree-sha1 = "5ab848b00d11e579786ffcca46f2ab0173e30d48"

src/Rootfs.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ using Base.BinaryPlatforms: set_compare_strategy!, compare_version_cap
88
struct CompilerShard
99
# Something like "RootFS", or "GCCBootstrap"
1010
name::String
11-
11+
1212
# Something like v"7.1.0"
1313
version::VersionNumber
1414

@@ -17,7 +17,7 @@ struct CompilerShard
1717

1818
# Usually `default_host_platform`
1919
host::AbstractPlatform
20-
20+
2121
# :unpacked or :squashfs. Possibly more in the future.
2222
archive_type::Symbol
2323

@@ -151,7 +151,7 @@ function shard_path(cs::CompilerShard; uid = getuid())
151151
# as artifacts are retired, and also for multiple users to share a scratchspace.
152152
return joinpath(@get_scratch!(bytes2hex(hash.bytes)), "$(artifact_name(cs))_$(getuid()).squashfs")
153153
end
154-
154+
155155
return artifact_path(hash)
156156
end
157157

@@ -498,7 +498,7 @@ function choose_shards(p::AbstractPlatform;
498498
GCC_builds::Vector{GCCBuild}=available_gcc_builds,
499499
LLVM_builds::Vector{LLVMBuild}=available_llvm_builds,
500500
Rust_build::VersionNumber=v"1.43.0",
501-
Go_build::VersionNumber=v"1.13",
501+
Go_build::VersionNumber=v"1.16.3",
502502
archive_type::Symbol = (use_squashfs ? :squashfs : :unpacked),
503503
bootstrap_list::Vector{Symbol} = bootstrap_list,
504504
# Because GCC has lots of compatibility issues, we always default to

0 commit comments

Comments
 (0)