Skip to content

Commit c76dbed

Browse files
committed
ci: run coverage only in tics
1 parent 6c862d6 commit c76dbed

File tree

1 file changed

+14
-33
lines changed

1 file changed

+14
-33
lines changed

.github/workflows/tics.yml

+14-33
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,11 @@ jobs:
2929

3030
- id: get-repo
3131
run: echo "repo=${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name || '' }}" >> $GITHUB_OUTPUT
32-
33-
# This is safe because the reusable workflow does not require secrets and this
34-
# call is not setting secret inheritance (i.e. "secrets: inherit")
35-
call-unit-tests:
36-
uses: ./.github/workflows/tests.yaml
37-
needs: [set-project]
38-
with:
39-
ref: ${{ needs.set-project.outputs.ref }}
40-
repository: ${{ needs.set-project.outputs.repo }}
4132

4233
tics-static-code-analysis:
4334
runs-on: ubuntu-24.04
4435
name: TiCS Static Code Analysis
45-
needs: [set-project, call-unit-tests]
36+
needs: [set-project]
4637
permissions:
4738
pull-requests: write
4839
env:
@@ -74,34 +65,24 @@ jobs:
7465
echo "." > ${TICS_FILELIST}
7566
fi
7667
77-
- uses: actions/setup-go@v3
68+
- uses: actions/setup-go@v4
7869
with:
7970
go-version-file: 'go.mod'
80-
81-
- uses: actions/download-artifact@v4
82-
83-
# This is safe because actions do not have access to secrets unless these
84-
# are passed via inputs or environment variables.
85-
# Ref: https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions#accessing-your-secrets
86-
- uses: ./.github/actions/build-chisel/
87-
name: Build Chisel (TiCS analysis precondition)
88-
env:
89-
CGO_ENABLED: "0"
9071

91-
# Get the coverage file produced by the unit tests workflow and get it
92-
# ready for TiCS.
93-
- name: Prepare cobertura XML results
94-
env:
95-
TICS_COVERAGE_FOLDER: ".coverage"
72+
- name: Install dependencies
9673
run: |
97-
set -x
98-
mkdir -p ${TICS_COVERAGE_FOLDER}
99-
go install github.com/boumenot/gocover-cobertura@latest
100-
gocover-cobertura \
101-
< ${{ needs.call-unit-tests.outputs.test-coverage-artifact }}/${{ needs.call-unit-tests.outputs.test-coverage-file }} \
102-
> ${TICS_COVERAGE_FOLDER}/coverage.xml
74+
go install honnef.co/go/tools/cmd/[email protected]
75+
go install github.com/axw/gocov/[email protected]
76+
go install github.com/AlekSi/[email protected]
10377
104-
- run: go install honnef.co/go/tools/cmd/staticcheck@latest
78+
# We could store a report from the "tests" run, but this is cheap to do and keeps this isolated.
79+
- name: Test and generate coverage report
80+
run: |
81+
go test -coverprofile=coverage.out ./...
82+
gocov convert coverage.out > coverage.json
83+
# The coverage.xml file needs to be in a .coverage folder.
84+
mkdir .coverage
85+
gocov-xml < coverage.json > .coverage/coverage.xml
10586
10687
- name: Run TiCS client analysis
10788
uses: tiobe/tics-github-action@v3

0 commit comments

Comments
 (0)