Skip to content

Commit

Permalink
Odin checksums
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Apr 27, 2024
1 parent 5e2af6f commit 2b1a0d4
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions odin.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,32 @@ description = "Odin Programming Language"
binaries = ["odin"]
test = "odin --version"


platform darwin {
platform "darwin" {
source = "https://github.com/odin-lang/Odin/releases/download/dev-${version}/odin-macos-${arch}-dev-${version}.zip"
}

platform linux amd64 {
platform "linux" "amd64" {
source = "https://github.com/odin-lang/Odin/releases/download/dev-${version}/odin-ubuntu-${arch}-dev-${version}.zip"
}

on unpack {
run { cmd = "/bin/bash -c 'unzip dist.zip && mv dist/* .'" }
on "unpack" {
run {
cmd = "/bin/bash -c 'unzip dist.zip && mv dist/* .'"
}
}

version "2024-04a" {
version "2024-04" "2024-04a" {
auto-version {
github-release = "odin-lang/Odin"
version-pattern = "dev-(.*)"
}
}

sha256sums = {
"https://github.com/odin-lang/Odin/releases/download/dev-2024-04a/odin-macos-amd64-dev-2024-04a.zip": "8f90376cf595cc08e5a7834724ec6937e4c6b62243611bd3d35c97681aa0bc72",
"https://github.com/odin-lang/Odin/releases/download/dev-2024-04a/odin-macos-arm64-dev-2024-04a.zip": "b2aeed281a9a405cda860126ceedc87724bae1d3d91f97f96252daa2bae10183",
"https://github.com/odin-lang/Odin/releases/download/dev-2024-04a/odin-ubuntu-amd64-dev-2024-04a.zip": "c04ec0f1a44541fbd9b666449b7f70f835d0e4080ea6a82db355d57fab8b607c",
"https://github.com/odin-lang/Odin/releases/download/dev-2024-04/odin-macos-arm64-dev-2024-04.zip": "5c6650e6b523d219fdc21281d7919445ec77bb5a8c4c1ebbe76106bb47e4cc29",
"https://github.com/odin-lang/Odin/releases/download/dev-2024-04/odin-ubuntu-amd64-dev-2024-04.zip": "67eb23c73638dddddcde43dde588feb87696d854414b8e074c6e2102feed447a",
"https://github.com/odin-lang/Odin/releases/download/dev-2024-04/odin-macos-amd64-dev-2024-04.zip": "cab840a141da5e6514d562c1e68ffc529261a7dc9258cba42cac848af5a1ff8e",
}

0 comments on commit 2b1a0d4

Please sign in to comment.