about summary refs log tree commit diff
path: root/pkgs/development/compilers/graalvm/community-edition/update.sh
blob: 2dbb32156974b3f160e50240e678b7884956db7a (plain) (blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/env nix-shell
#!nix-shell -p coreutils curl.out nix jq gnused -i bash

# Usage:
# ./update.sh [PRODUCT]
#
# Examples:
#   $ ./update.sh graalvm-ce # will generate ./hashes-graalvm-ce.nix
#   $ ./update.sh # same as above
#   $ ./update.sh graalpy # will generate ./hashes-graalpy.nix
#
# Environment variables:
# FORCE=1        to force the update of a product (e.g.: skip up-to-date checks)
# VERSION=xx.xx  will assume that xx.xx is the new version

set -eou pipefail

cd "$(dirname "${BASH_SOURCE[0]}")"
tmpfile="$(mktemp --suffix=.nix)"

trap 'rm -rf "$tmpfile"' EXIT

info() { echo "[INFO] $*"; }

echo_file() { echo "$@" >> "$tmpfile"; }

verlte() {
    [  "$1" = "$(echo -e "$1\n$2" | sort -V | head -n1)" ]
}

readonly product="${1:-graalvm-ce}"
readonly hashes_nix="hashes-$product.nix"
readonly nixpkgs=../../../../..

declare -r -A update_urls=(
  [graalvm-ce]="https://api.github.com/repos/graalvm/graalvm-ce-builds/releases/latest"
  [graalpy]="https://api.github.com/repos/oracle/graalpython/releases/latest"
  [truffleruby]="https://api.github.com/repos/oracle/truffleruby/releases/latest"
)

current_version="$(nix-instantiate "$nixpkgs" --eval --strict -A "graalvmCEPackages.${product}.version" --json | jq -r)"
readonly current_version

if [[ -z "${VERSION:-}" ]]; then
  gh_version="$(curl \
      ${GITHUB_TOKEN:+"-u \":$GITHUB_TOKEN\""} \
      -s "${update_urls[$product]}" | \
      jq --raw-output .tag_name)"
  new_version="${gh_version//jdk-/}"
  new_version="${new_version//graal-/}"
else
  new_version="$VERSION"
fi
readonly new_version

info "Current version: $current_version"
info "New version: $new_version"
if verlte "$new_version" "$current_version"; then
  info "$product $current_version is up-to-date."
  [[ -z "${FORCE:-}" ]]  && exit 0
else
  info "$product $current_version is out-of-date. Updating..."
fi

# Make sure to get the `-community` versions!
declare -r -A products_urls=(
  [graalvm-ce]="https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-${new_version}/graalvm-community-jdk-${new_version}_@platform@_bin.tar.gz"
  [graalpy]="https://github.com/oracle/graalpython/releases/download/graal-${new_version}/graalpy-community-${new_version}-@platform@.tar.gz"
  [truffleruby]="https://github.com/oracle/truffleruby/releases/download/graal-${new_version}/truffleruby-community-${new_version}-@platform@.tar.gz"
)

if [[ "$product" == "graalvm-ce" ]]; then
  readonly platforms=(
    "linux-aarch64"
    "linux-x64"
    "macos-aarch64"
    "macos-x64"
  )
else
  readonly platforms=(
    "linux-aarch64"
    "linux-amd64"
    "macos-aarch64"
    "macos-amd64"
  )
fi

info "Generating '$hashes_nix' file for '$product' $new_version. This will take a while..."

# Indentation of `echo_file` function is on purpose to make it easier to visualize the output
echo_file "# Generated by $0 script"
echo_file "{"
echo_file "  \"version\" = \"$new_version\";"
url="${products_urls["${product}"]}"
echo_file "  \"$product\" = {"
for platform in "${platforms[@]}"; do
  args=("${url//@platform@/$platform}")
  # Get current hashes to skip derivations already in /nix/store to reuse cache when the version is the same
  # e.g.: when adding a new product and running this script with FORCE=1
  if [[ "$current_version" == "$new_version" ]] && \
      previous_hash="$(nix-instantiate --eval "$hashes_nix" -A "$product.$platform.sha256" --json | jq -r)"; then
      args+=("$previous_hash" "--type" "sha256")
  else
      info "Hash in '$product' for '$platform' not found. Re-downloading it..."
  fi
  if hash="$(nix-prefetch-url "${args[@]}")"; then
echo_file "    \"$platform\" = {"
echo_file "      sha256 = \"$hash\";"
echo_file "      url = \"${url//@platform@/${platform}}\";"
echo_file "    };"
  else
      info "Error while downloading '$product' for '$platform'. Skipping it..."
  fi
done
echo_file "  };"
echo_file "}"

info "Moving the temporary file to '$hashes_nix'"
mv "$tmpfile" "$hashes_nix"

info "Done!"