#!/bin/bash # Copyright 2018 The Kubernetes Authors All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. set -eu -o pipefail DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) echo >&2 'Installing pullsheet' GOBIN="$DIR" go install github.com/google/pullsheet@latest git fetch --tags -f git pull https://github.com/kubernetes/minikube.git master --tags # 1) Get tags. # 2) Filter out beta tags. # 3) Parse tag name into its version numbers. # 4) Sort by ascending version numbers. # 5) Reform tag name from version numbers. # 6) Pair up current and previous tags. Format: (previous tag, current tag) # 7) Format command to get tag dates. # 8) Execute command to get dates of previous and current tag. Format: (current tag, prev date, current date) # 9) Add negative line numbers to each tag. Format: (negative index, current tag, prev date, current date) # - Negative line numbers are used since entries are sorted in descending order. tags_with_range=$( git --no-pager tag \ | grep -v -e "beta" \ | sed -r "s/v([0-9]*)\.([0-9]*)\.([0-9]*)/\1 \2 \3/" \ | sort -k1n -k2n -k3n \ | sed -r "s/([0-9]*) ([0-9]*) ([0-9]*)/v\1.\2.\3/" \ | sed -n -r "x; G; s/\n/ /; p"\ | sed -n -r "s/([v.0-9]+) ([v.0-9]+)/-c '{ echo -n \2; git log -1 --pretty=format:\" %as \" \1; git log -1 --pretty=format:\"%as\" \2; echo;}'/p" \ | xargs -L 1 bash \ | sed "=" | sed -r "N;s/\n/ /;s/^/-/") destination="$DIR/../site/content/en/docs/contrib/leaderboard" mkdir -p "$destination" TMP_TOKEN=$(mktemp) gh auth status -t 2>&1 | sed -n -r 's/^.*Token: ([a-zA-Z0-9_]*)/\1/p' > "$TMP_TOKEN" if [ ! -s "$TMP_TOKEN" ]; then echo "Failed to acquire token from 'gh auth'. Ensure 'gh' is authenticated." 1>&2 exit 1 fi # Ensure the token is deleted when the script exits, so the token is not leaked. function cleanup_token() { rm -f "$TMP_TOKEN" } trap cleanup_token EXIT while read -r tag_index tag_name tag_start tag_end; do FILE="site/content/en/docs/contrib/leaderboard/$tag_name.html" if [[ -f "$FILE" ]]; then continue fi echo "Generating leaderboard for" "$tag_name" "(from $tag_start to $tag_end)" # Print header for page. printf -- "---\ntitle: \"$tag_name - $tag_end\"\nlinkTitle: \"$tag_name - $tag_end\"\nweight: $tag_index\n---\n" > "$destination/$tag_name.html" # Add pullsheet content "${DIR}/pullsheet" leaderboard --token-path "$TMP_TOKEN" --repos kubernetes/minikube --since "$tag_start" --until "$tag_end" --hide-command --logtostderr=false --stderrthreshold=2 \ >> "$destination/$tag_name.html" done <<< "$tags_with_range"