|
| 1 | +#!/bin/bash |
| 2 | +set -x |
| 3 | +set -e |
| 4 | + |
| 5 | +# URL for the associated GitHub Release of $model_name. |
| 6 | +release_url=$1 |
| 7 | +# Timestamp for the creation of the $release_url. |
| 8 | +release_time=$2 |
| 9 | +# Path to the dir containing the spack.{lock,location.json}. |
| 10 | +json_dir=$3 |
| 11 | +# Name of the model (or root-sbd) (eg. access-om2) |
| 12 | +model_name=$4 |
| 13 | + |
| 14 | +# the rest of the model components for the given $model_name |
| 15 | +# (eg. for access-om2 there would be mom5, cice5, etc...) |
| 16 | +shift 4 |
| 17 | +packages=( "$@" ) |
| 18 | + |
| 19 | +spack=$(jq '.spack | {version: .version, commit: .commit}' "$json_dir/spack.lock") |
| 20 | + |
| 21 | +model=$(jq \ |
| 22 | + --arg model "$model_name" \ |
| 23 | + --argjson spack "$spack" \ |
| 24 | + '.concrete_specs | to_entries[] | select(.value.name == $model) |
| 25 | + | { |
| 26 | + spackhash: .key, |
| 27 | + spec: (.value.name + "@" + .value.version), |
| 28 | + spackversion: $spack |
| 29 | + }' "$json_dir/spack.lock" |
| 30 | +) |
| 31 | + |
| 32 | +for pkg in "${packages[@]}"; do |
| 33 | + install_path=$(jq -r \ |
| 34 | + --arg pkg "$pkg" \ |
| 35 | + 'to_entries[] | select(.key | test($pkg)) | .value' \ |
| 36 | + "$json_dir/spack.location.json" |
| 37 | + ) |
| 38 | + |
| 39 | + jq \ |
| 40 | + --arg pkg "$pkg" \ |
| 41 | + --arg release_url "$release_url" \ |
| 42 | + --arg release_time "$release_time" \ |
| 43 | + --arg install_path "$install_path" \ |
| 44 | + --argjson model "$model" \ |
| 45 | + '.concrete_specs | to_entries[] | select(.value.name == $pkg) |
| 46 | + | { |
| 47 | + spackhash: .key, |
| 48 | + spec: (.value.name + "@" + .value.version), |
| 49 | + modelbuildhash: $model, |
| 50 | + installpath: $install_path, |
| 51 | + created_at: $release_time, |
| 52 | + release_url: $release_url |
| 53 | + }' "$json_dir/spack.lock" > package.json |
| 54 | + |
| 55 | + python ./tools/release_provenance/save_release.py package.json |
| 56 | + echo "Uploaded $pkg to build DB" |
| 57 | +done |
0 commit comments