-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert test coverage report to junit format (#1148)
- Loading branch information
1 parent
0d71e55
commit 25566a5
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
name: Generate junit test report | ||
|
||
on: # yamllint disable-line rule:truthy | ||
pull_request: # yamllint disable-line rule:empty-values | ||
push: | ||
branches: [devel] | ||
|
||
env: | ||
DESIRED_GO_VERSION: '1.20' | ||
|
||
jobs: | ||
go_test_coverage: | ||
name: go test coverage | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.DESIRED_GO_VERSION }} | ||
|
||
- name: build and install receptor | ||
run: | | ||
make build-all | ||
sudo cp ./receptor /usr/local/bin/receptor | ||
- name: Download kind binary | ||
run: curl -Lo ./kind https://kind.sigs.k8s.io/dl/latest/kind-linux-amd64 && chmod +x ./kind | ||
|
||
- name: Create k8s cluster | ||
run: ./kind create cluster | ||
|
||
- name: Interact with the cluster | ||
run: kubectl get nodes | ||
|
||
- name: Install go junit reporting | ||
run: go install github.com/jstemmer/go-junit-report/v2@latest | ||
|
||
- name: Run receptor tests | ||
run: go test -v 2>&1 ./... | go-junit-report > report.xml | ||
|
||
- name: get k8s logs | ||
if: ${{ failure() }} | ||
run: .github/workflows/artifact-k8s-logs.sh | ||
|
||
- name: remove sockets before archiving logs | ||
if: ${{ failure() }} | ||
run: find /tmp/receptor-testing -name controlsock -delete | ||
|
||
- name: Artifact receptor data | ||
uses: actions/[email protected] | ||
if: ${{ failure() }} | ||
with: | ||
name: test-logs | ||
path: /tmp/receptor-testing | ||
|
||
- name: Archive receptor binary | ||
uses: actions/[email protected] | ||
with: | ||
name: receptor | ||
path: /usr/local/bin/receptor |