2023-03-06 21:57:55 +00:00
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
go-arch:
|
|
|
|
description: The execution architecture (arm, amd64, etc.)
|
|
|
|
required: true
|
|
|
|
type: string
|
2023-03-24 17:17:21 +00:00
|
|
|
enterprise:
|
|
|
|
description: A flag indicating if this workflow is executing for the enterprise repository.
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
total-runners:
|
|
|
|
description: Number of runners to use for executing the tests on.
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
env-vars:
|
|
|
|
description: A map of environment variables as JSON.
|
|
|
|
required: false
|
|
|
|
type: string
|
|
|
|
default: '{}'
|
2023-03-21 18:13:40 +00:00
|
|
|
extra-flags:
|
|
|
|
description: A space-separated list of additional build flags.
|
2023-03-06 21:57:55 +00:00
|
|
|
required: false
|
|
|
|
type: string
|
2023-04-24 13:57:37 +00:00
|
|
|
default: ''
|
2023-03-06 21:57:55 +00:00
|
|
|
runs-on:
|
|
|
|
description: An expression indicating which kind of runners to use.
|
|
|
|
required: false
|
|
|
|
type: string
|
|
|
|
default: ubuntu-latest
|
2023-07-12 19:26:00 +00:00
|
|
|
go-tags:
|
2023-04-03 14:26:55 +00:00
|
|
|
description: A comma-separated list of additional build tags to consider satisfied during the build.
|
|
|
|
required: false
|
|
|
|
type: string
|
2023-07-05 21:19:49 +00:00
|
|
|
name:
|
|
|
|
description: A suffix to append to archived test results
|
|
|
|
required: false
|
|
|
|
default: ''
|
|
|
|
type: string
|
|
|
|
go-test-parallelism:
|
|
|
|
description: The parallelism parameter for Go tests
|
|
|
|
required: false
|
|
|
|
default: 20
|
|
|
|
type: number
|
|
|
|
timeout-minutes:
|
2023-07-07 17:52:01 +00:00
|
|
|
description: The maximum number of minutes that this workflow should run
|
2023-07-05 21:19:49 +00:00
|
|
|
required: false
|
2023-07-07 17:52:01 +00:00
|
|
|
default: 60
|
2023-07-05 21:19:49 +00:00
|
|
|
type: number
|
|
|
|
|
2023-03-24 17:17:21 +00:00
|
|
|
env: ${{ fromJSON(inputs.env-vars) }}
|
2023-03-06 21:57:55 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-generate-test-package-list:
|
|
|
|
runs-on: ${{ fromJSON(inputs.runs-on) }}
|
|
|
|
name: Verify Test Package Distribution
|
2023-06-16 17:10:36 +00:00
|
|
|
permissions:
|
|
|
|
id-token: write # Note: this permission is explicitly required for Vault auth
|
|
|
|
contents: read
|
2023-03-06 21:57:55 +00:00
|
|
|
steps:
|
2023-07-07 17:52:01 +00:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2023-07-12 19:26:00 +00:00
|
|
|
- uses: ./.github/actions/set-up-go
|
2023-07-07 17:52:01 +00:00
|
|
|
with:
|
2023-07-12 19:26:00 +00:00
|
|
|
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
|
|
|
no-restore: true # We don't need the vault Go modules when generating indices
|
2023-07-07 17:52:01 +00:00
|
|
|
- name: Authenticate to Vault
|
|
|
|
id: vault-auth
|
|
|
|
if: github.repository == 'hashicorp/vault-enterprise'
|
|
|
|
run: vault-auth
|
|
|
|
- name: Fetch Secrets
|
|
|
|
id: secrets
|
|
|
|
if: github.repository == 'hashicorp/vault-enterprise'
|
|
|
|
uses: hashicorp/vault-action@130d1f5f4fe645bb6c83e4225c04d64cfb62de6e
|
|
|
|
with:
|
|
|
|
url: ${{ steps.vault-auth.outputs.addr }}
|
|
|
|
caCertificate: ${{ steps.vault-auth.outputs.ca_certificate }}
|
|
|
|
token: ${{ steps.vault-auth.outputs.token }}
|
|
|
|
secrets: |
|
|
|
|
kv/data/github/${{ github.repository }}/github-token username-and-token | github-token;
|
|
|
|
- id: setup-git-private
|
|
|
|
name: Setup Git configuration (private)
|
|
|
|
if: github.repository == 'hashicorp/vault-enterprise'
|
|
|
|
run: |
|
|
|
|
git config --global url."https://${{ steps.secrets.outputs.github-token }}@github.com".insteadOf https://github.com
|
|
|
|
- id: setup-git-public
|
|
|
|
name: Setup Git configuration (public)
|
|
|
|
if: github.repository != 'hashicorp/vault-enterprise'
|
|
|
|
run: |
|
|
|
|
git config --global url."https://${{ secrets.ELEVATED_GITHUB_TOKEN}}@github.com".insteadOf https://github.com
|
|
|
|
- id: test
|
|
|
|
working-directory: .github/scripts
|
|
|
|
env:
|
|
|
|
GOPRIVATE: github.com/hashicorp/*
|
|
|
|
run: |
|
|
|
|
ENTERPRISE=${{ inputs.enterprise }} ./test-generate-test-package-lists.sh
|
2023-03-06 21:57:55 +00:00
|
|
|
runner-indexes:
|
|
|
|
runs-on: ${{ fromJSON(inputs.runs-on) }}
|
|
|
|
name: Generate runner indexes
|
|
|
|
#
|
|
|
|
# This job generates a JSON Array of integers ranging from 1 to 16.
|
|
|
|
# That array is used in the matrix section of the test-go job below.
|
|
|
|
#
|
|
|
|
outputs:
|
|
|
|
runner-indexes: ${{ steps.generate-index-list.outputs.indexes }}
|
|
|
|
steps:
|
2023-07-07 17:52:01 +00:00
|
|
|
- id: generate-index-list
|
|
|
|
run: |
|
|
|
|
INDEX_LIST="$(seq 1 ${{ inputs.total-runners }})"
|
|
|
|
INDEX_JSON="$(jq --null-input --compact-output '. |= [inputs]' <<< "${INDEX_LIST}")"
|
|
|
|
echo "indexes=${INDEX_JSON}" >> "${GITHUB_OUTPUT}"
|
2023-03-06 21:57:55 +00:00
|
|
|
test-go:
|
|
|
|
permissions:
|
|
|
|
id-token: write # Note: this permission is explicitly required for Vault auth
|
|
|
|
contents: read
|
2023-04-03 14:26:55 +00:00
|
|
|
name: "${{ matrix.runner-index }}"
|
2023-03-06 21:57:55 +00:00
|
|
|
needs:
|
2023-07-07 17:52:01 +00:00
|
|
|
- runner-indexes
|
2023-03-06 21:57:55 +00:00
|
|
|
runs-on: ${{ fromJSON(inputs.runs-on) }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
#
|
|
|
|
# Initialize the runner-index key with the JSON array of integers
|
|
|
|
# generated above.
|
|
|
|
#
|
|
|
|
runner-index: ${{ fromJSON(needs.runner-indexes.outputs.runner-indexes) }}
|
|
|
|
env:
|
|
|
|
GOPRIVATE: github.com/hashicorp/*
|
2023-07-07 17:52:01 +00:00
|
|
|
TIMEOUT_IN_MINUTES: ${{ inputs.timeout-minutes }}
|
2023-03-06 21:57:55 +00:00
|
|
|
steps:
|
2023-07-05 21:19:49 +00:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2023-07-12 19:26:00 +00:00
|
|
|
- uses: ./.github/actions/set-up-go
|
2023-03-06 21:57:55 +00:00
|
|
|
with:
|
2023-07-12 19:26:00 +00:00
|
|
|
github-token: ${{ secrets.ELEVATED_GITHUB_TOKEN }}
|
2023-03-06 21:57:55 +00:00
|
|
|
- name: Authenticate to Vault
|
|
|
|
id: vault-auth
|
|
|
|
if: github.repository == 'hashicorp/vault-enterprise'
|
|
|
|
run: vault-auth
|
|
|
|
- name: Fetch Secrets
|
|
|
|
id: secrets
|
|
|
|
if: github.repository == 'hashicorp/vault-enterprise'
|
|
|
|
uses: hashicorp/vault-action@130d1f5f4fe645bb6c83e4225c04d64cfb62de6e
|
|
|
|
with:
|
|
|
|
url: ${{ steps.vault-auth.outputs.addr }}
|
|
|
|
caCertificate: ${{ steps.vault-auth.outputs.ca_certificate }}
|
|
|
|
token: ${{ steps.vault-auth.outputs.token }}
|
|
|
|
secrets: |
|
2023-03-31 17:15:57 +00:00
|
|
|
kv/data/github/${{ github.repository }}/datadog-ci DATADOG_API_KEY;
|
2023-04-03 14:26:55 +00:00
|
|
|
kv/data/github/${{ github.repository }}/github-token username-and-token | github-token;
|
2023-03-06 21:57:55 +00:00
|
|
|
kv/data/github/${{ github.repository }}/license license_1 | VAULT_LICENSE_CI;
|
|
|
|
kv/data/github/${{ github.repository }}/license license_2 | VAULT_LICENSE_2;
|
|
|
|
kv/data/github/${{ github.repository }}/hcp-link HCP_API_ADDRESS;
|
|
|
|
kv/data/github/${{ github.repository }}/hcp-link HCP_AUTH_URL;
|
|
|
|
kv/data/github/${{ github.repository }}/hcp-link HCP_CLIENT_ID;
|
|
|
|
kv/data/github/${{ github.repository }}/hcp-link HCP_CLIENT_SECRET;
|
|
|
|
kv/data/github/${{ github.repository }}/hcp-link HCP_RESOURCE_ID;
|
2023-04-03 14:26:55 +00:00
|
|
|
- id: setup-git-private
|
|
|
|
name: Setup Git configuration (private)
|
|
|
|
if: github.repository == 'hashicorp/vault-enterprise'
|
|
|
|
run: |
|
|
|
|
git config --global url."https://${{ steps.secrets.outputs.github-token }}@github.com".insteadOf https://github.com
|
|
|
|
- id: setup-git-public
|
|
|
|
name: Setup Git configuration (public)
|
|
|
|
if: github.repository != 'hashicorp/vault-enterprise'
|
|
|
|
run: |
|
|
|
|
git config --global url."https://${{ secrets.ELEVATED_GITHUB_TOKEN}}@github.com".insteadOf https://github.com
|
2023-04-27 13:41:49 +00:00
|
|
|
- id: go-mod-download
|
|
|
|
if: matrix.runner-index > 16
|
|
|
|
env:
|
|
|
|
GOPRIVATE: github.com/hashicorp/*
|
|
|
|
run: time go mod download -x
|
|
|
|
- id: build
|
|
|
|
if: matrix.runner-index > 16
|
|
|
|
env:
|
|
|
|
GOPRIVATE: github.com/hashicorp/*
|
|
|
|
run: time make ci-bootstrap dev
|
2023-03-06 21:57:55 +00:00
|
|
|
- id: run-go-tests
|
|
|
|
name: Run Go tests
|
|
|
|
timeout-minutes: ${{ fromJSON(env.TIMEOUT_IN_MINUTES) }}
|
2023-04-25 21:11:46 +00:00
|
|
|
env:
|
|
|
|
COMMIT_SHA: ${{ github.sha }}
|
2023-03-06 21:57:55 +00:00
|
|
|
run: |
|
|
|
|
set -exo pipefail
|
|
|
|
|
|
|
|
#
|
|
|
|
# This script creates a Bash array with 16 elements each
|
|
|
|
# containing a space delimited list of package names. The
|
|
|
|
# array element corresponding to this instance's
|
|
|
|
# matrix.runner-index value.
|
|
|
|
#
|
|
|
|
ENTERPRISE=${{ inputs.enterprise }} source .github/scripts/generate-test-package-lists.sh
|
|
|
|
|
|
|
|
# Build the dynamically generated source files.
|
|
|
|
make prep
|
|
|
|
|
|
|
|
mkdir -p test-results/go-test
|
|
|
|
|
|
|
|
# We don't want VAULT_LICENSE set when running Go tests, because that's
|
|
|
|
# not what developers have in their environments and it could break some
|
|
|
|
# tests; it would be like setting VAULT_TOKEN. However some non-Go
|
|
|
|
# CI commands, like the UI tests, shouldn't have to worry about licensing.
|
2023-07-12 19:26:00 +00:00
|
|
|
# So we provide the tests which want an externally supplied license with licenses
|
2023-03-06 21:57:55 +00:00
|
|
|
# via the VAULT_LICENSE_CI and VAULT_LICENSE_2 environment variables, and here we unset it.
|
2023-03-22 19:02:06 +00:00
|
|
|
# shellcheck disable=SC2034
|
2023-03-06 21:57:55 +00:00
|
|
|
VAULT_LICENSE=
|
|
|
|
|
|
|
|
# Assign test licenses to relevant variables if they aren't already
|
|
|
|
if [[ ${{ github.repository }} == 'hashicorp/vault' ]]; then
|
|
|
|
export VAULT_LICENSE_CI=${{ secrets.ci_license }}
|
|
|
|
export VAULT_LICENSE_2=${{ secrets.ci_license_2 }}
|
|
|
|
export HCP_API_ADDRESS=${{ secrets.HCP_API_ADDRESS }}
|
|
|
|
export HCP_AUTH_URL=${{ secrets.HCP_AUTH_URL }}
|
|
|
|
export HCP_CLIENT_ID=${{ secrets.HCP_CLIENT_ID }}
|
|
|
|
export HCP_CLIENT_SECRET=${{ secrets.HCP_CLIENT_SECRET }}
|
|
|
|
export HCP_RESOURCE_ID=${{ secrets.HCP_RESOURCE_ID }}
|
2023-03-16 17:04:23 +00:00
|
|
|
# Temporarily removing this variable to cause HCP Link tests
|
|
|
|
# to be skipped.
|
|
|
|
#export HCP_SCADA_ADDRESS=${{ secrets.HCP_SCADA_ADDRESS }}
|
2023-03-06 21:57:55 +00:00
|
|
|
fi
|
|
|
|
|
2023-04-24 13:57:37 +00:00
|
|
|
if [ -f bin/vault ]; then
|
|
|
|
VAULT_BINARY="$(pwd)/bin/vault"
|
|
|
|
export VAULT_BINARY
|
|
|
|
fi
|
2023-07-12 19:26:00 +00:00
|
|
|
|
2023-03-22 19:02:06 +00:00
|
|
|
# shellcheck disable=SC2086 # can't quote package list
|
2023-03-06 21:57:55 +00:00
|
|
|
GOARCH=${{ inputs.go-arch }} \
|
|
|
|
go run gotest.tools/gotestsum --format=short-verbose \
|
2023-07-07 16:43:07 +00:00
|
|
|
--junitfile test-results/go-test/results-${{ matrix.runner-index }}.xml \
|
|
|
|
--jsonfile test-results/go-test/results-${{ matrix.runner-index }}.json \
|
2023-07-07 17:52:01 +00:00
|
|
|
--jsonfile-timing-events failure-summary-${{ matrix.runner-index }}${{inputs.name}}.json \
|
2023-03-06 21:57:55 +00:00
|
|
|
-- \
|
2023-07-12 19:26:00 +00:00
|
|
|
-tags "${{ inputs.go-tags }}" \
|
2023-03-06 21:57:55 +00:00
|
|
|
-timeout=${{ env.TIMEOUT_IN_MINUTES }}m \
|
2023-07-05 21:19:49 +00:00
|
|
|
-parallel=${{ inputs.go-test-parallelism }} \
|
2023-03-21 18:13:40 +00:00
|
|
|
${{ inputs.extra-flags }} \
|
2023-03-06 21:57:55 +00:00
|
|
|
\
|
|
|
|
${test_packages[${{ matrix.runner-index }}]}
|
2023-03-31 17:15:57 +00:00
|
|
|
- name: Prepare datadog-ci
|
2023-07-07 17:52:01 +00:00
|
|
|
if: github.repository == 'hashicorp/vault' && (success() || failure())
|
2023-03-31 17:15:57 +00:00
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
|
|
|
curl -L --fail "https://github.com/DataDog/datadog-ci/releases/latest/download/datadog-ci_linux-x64" --output "/usr/local/bin/datadog-ci"
|
|
|
|
chmod +x /usr/local/bin/datadog-ci
|
|
|
|
- name: Upload test results to DataDog
|
|
|
|
continue-on-error: true
|
|
|
|
env:
|
|
|
|
DD_ENV: ci
|
|
|
|
run: |
|
|
|
|
if [[ ${{ github.repository }} == 'hashicorp/vault' ]]; then
|
|
|
|
export DATADOG_API_KEY=${{ secrets.DATADOG_API_KEY }}
|
|
|
|
fi
|
2023-07-07 16:43:07 +00:00
|
|
|
datadog-ci junit upload --service "$GITHUB_REPOSITORY" test-results/go-test/results-${{ matrix.runner-index }}.xml
|
2023-07-04 15:07:05 +00:00
|
|
|
if: success() || failure()
|
2023-03-06 21:57:55 +00:00
|
|
|
- name: Archive test results
|
2023-05-22 17:18:06 +00:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2023-03-06 21:57:55 +00:00
|
|
|
with:
|
2023-07-07 16:43:07 +00:00
|
|
|
name: test-results${{ inputs.name }}
|
2023-03-06 21:57:55 +00:00
|
|
|
path: test-results/
|
2023-07-07 17:52:01 +00:00
|
|
|
if: success() || failure()
|
|
|
|
- name: Upload failure summary
|
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
|
|
|
if: success() || failure()
|
2023-03-06 21:57:55 +00:00
|
|
|
with:
|
2023-07-07 17:52:01 +00:00
|
|
|
name: failure-summary
|
|
|
|
path: failure-summary-${{ matrix.runner-index }}${{inputs.name}}.json
|