summaryrefslogtreecommitdiff
path: root/config/software/asdf_golang.rb
blob: 80d5cdd3576b35d3de438e6d37389f635b810f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

name "asdf_golang"
default_version "1.15.1"

source url: "https://golang.org/dl/go#{version}.linux-amd64.tar.gz"
relative_path "go"

version "1.14.6" do
  source sha256: "5c566ddc2e0bcfc25c26a5dc44a440fcc0177f7350c1f01952b34d5989a0d287"
end
version "1.14.7" do
  source sha256: "4a7fa60f323ee1416a4b1425aefc37ea359e9d64df19c326a58953a97ad41ea5"
end
version "1.15" do
  source sha256: "2d75848ac606061efe52a8068d0e647b35ce487a15bb52272c427df485193602"
end
version "1.15.1" do
  source sha256: "70ac0dbf60a8ee9236f337ed0daa7a4c3b98f6186d4497826f68e97c0c0413f6"
end

build do
  mkdir install_dir
  sync "#{project_dir}/", install_dir
end