-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (51 loc) · 1.91 KB
/
test-uat-suite.yaml
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
name: terratests-uat-suite
on:
pull_request:
workflow_dispatch:
jobs:
setup-tests:
name: Setup UAT Tests
runs-on: ubuntu-latest
env:
EQUINIX_API_ENDPOINT: "https://uatapi.equinix.com"
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
id: go
- name: Get dependencies
run: |
go mod download
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: ${{ matrix.terraform }}
terraform_wrapper: false
- name: Setup Variables Files
env:
GH_TOKEN: ${{ secrets.SECRET_TOKEN }}
run: |
secret_names=$(gh api repos/equinix/terraform-equinix-fabric/actions/secrets | \
jq -r '.secrets[].name | select(startswith("TEST_DATA_UAT"))')
echo "::GITHUB_OUTPUT name=secret_names::$secret_names"
for secret_name in $secret_names; do
if [[ "$secret_name" == *"PORT_CONNECTION_PORT_ZSIDE"* ]]; then
secret_n=$(gh api repos/equinix/terraform-equinix-fabric/actions/secrets/$secret_name)
echo "secret_n = $secret_n"
echo "${{ secrets.secret_n }}" >> ./examples/port-2-port-connection/terraform.tfvars.json
echo "Variable Files Transferred"
fi
done
- name: Run Go Tests
run:
go test ./tests/uat -v -coverprofile coverage_uat_modules.txt -covermode=atomic -count 1 -parallel 8 -timeout 180m
- name: Upload test coverage to Codecov
if: ${{ always() }}
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage_uat_modules.txt