mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 01:32:33 +00:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
45 lines
1.4 KiB
Bash
Executable File
45 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
set -e
|
|
MAX_TESTS=10
|
|
# this script expects the following env vars to be set
|
|
# error if these are not set
|
|
[ ${GITHUB_TOKEN:?} ]
|
|
[ ${RUN_ID:?} ]
|
|
[ ${REPO:?} ]
|
|
[ ${PR_NUMBER:?} ]
|
|
if [ -z "$TABLE_DATA" ]; then
|
|
BODY="CI Results:
|
|
All Go tests succeeded! :white_check_mark:"
|
|
else
|
|
# Remove any rows that don't have a test name
|
|
# Only keep the test type, test package, test name, and logs column
|
|
# Remove the scroll emoji
|
|
# Remove "github.com/hashicorp/vault" from the package name
|
|
TABLE_DATA=$(echo "$TABLE_DATA" | awk -F\| '{if ($4 != " - ") { print "|" $2 "|" $3 "|" $4 "|" $7 }}' | sed -r 's/ :scroll://' | sed -r 's/github.com\/hashicorp\/vault\///')
|
|
NUM_FAILURES=$(wc -l <<< "$TABLE_DATA")
|
|
|
|
# Check if the number of failures is greater than the maximum tests to display
|
|
# If so, limit the table to MAX_TESTS number of results
|
|
if [ "$NUM_FAILURES" -gt "$MAX_TESTS" ]; then
|
|
TABLE_DATA=$(echo "$TABLE_DATA" | head -n "$MAX_TESTS")
|
|
NUM_OTHER=( $NUM_FAILURES - "$MAX_TESTS" )
|
|
TABLE_DATA="$TABLE_DATA
|
|
|
|
and $NUM_OTHER other tests"
|
|
fi
|
|
|
|
# Add the header for the table
|
|
BODY="CI Results:
|
|
Failures:
|
|
| Test Type | Package | Test | Logs |
|
|
| --------- | ------- | ---- | ---- |
|
|
${TABLE_DATA}"
|
|
fi
|
|
|
|
source ./.github/scripts/gh_comment.sh
|
|
|
|
update_or_create_comment "$REPO" "$PR_NUMBER" "CI Results:" "$BODY" |