-
Notifications
You must be signed in to change notification settings - Fork 22
63 lines (56 loc) · 1.87 KB
/
cli_core_unit_test.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
62
63
name: Tanzu CLI Unit Tests
on:
pull_request:
branches: [main, release-*]
push:
branches: [ main, test*, release-*]
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-*"
- "test/e2e/framework/v[0-9]+.[0-9]+.[0-9]+"
- "test/e2e/framework/v[0-9]+.[0-9]+.[0-9]+-*"
jobs:
build:
name: Tanzu CLI Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.21
id: go
- name: go cache
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Setup dependencies
run: |
make tools
echo "${PWD}/hack/tools/bin" >> $GITHUB_PATH
echo "${PWD}/bin" >> $GITHUB_PATH
- name: Run Unit Test
run: |
make test | tee ./make_test.output
- name: Generate ginkgo tests and code coverage report
run: |
cat ./make_test.output | go tool test2json > ./test_suite_output.json
./hack/scripts/generate-cli-ginkgo-tests-summary.sh ./test_suite_output.json > ./CLI-ginkgo-tests-summary.txt
cat ./make_test.output | ./hack/tools/bin/go-junit-report > ./CLI-junit-report.xml
- name: Tests Results Summary
if: always()
run: |
TEST_RESULTS_MD=$(./hack/scripts/generate-cli-unit-tests-report.sh ./CLI-junit-report.xml ./CLI-ginkgo-tests-summary.txt)
echo "$TEST_RESULTS_MD" >> $GITHUB_STEP_SUMMARY
if [[ $TEST_RESULTS_MD == *":x:"* ]]; then
exit 1
fi