-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PR checks for reconciled tracing with autobuilder and build steps
- Loading branch information
Henry Mercer
committed
Sep 1, 2022
1 parent
e303e2c
commit 1d311fe
Showing
4 changed files
with
265 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
109 changes: 109 additions & 0 deletions
109
.github/workflows/__go-reconciled-tracing-custom-build-steps.yml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,32 @@ | ||
name: "Go: Reconciled tracing with autobuilder" | ||
description: "Checks that Go reconciled tracing works when using an autobuilder step" | ||
os: ["ubuntu-latest", "macos-latest"] | ||
env: | ||
CODEQL_ACTION_RECONCILE_GO_EXTRACTION: "true" | ||
DOTNET_GENERATE_ASPNET_CERTIFICATE: "false" | ||
steps: | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: "^1.13.1" | ||
- uses: ./../action/init | ||
with: | ||
languages: go | ||
tools: ${{ steps.prepare-test.outputs.tools-url }} | ||
env: | ||
TEST_MODE: true | ||
- uses: ./../action/autobuild | ||
- uses: ./../action/analyze | ||
env: | ||
TEST_MODE: true | ||
- shell: bash | ||
run: | | ||
if [[ "${CODEQL_ACTION_DID_AUTOBUILD_GOLANG}" != true ]]; then | ||
echo "Expected the Go autobuilder to be run, but the" \ | ||
"CODEQL_ACTION_DID_AUTOBUILD_GOLANG environment variable was not true." | ||
exit 1 | ||
fi | ||
cd "$RUNNER_TEMP/codeql_databases" | ||
if [[ ! -d go ]]; then | ||
echo "Did not find a Go database" | ||
exit 1 | ||
fi |
33 changes: 33 additions & 0 deletions
33
pr-checks/checks/go-reconciled-tracing-custom-build-steps.yml
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,33 @@ | ||
name: "Go: Reconciled tracing with custom build steps" | ||
description: "Checks that reconciled Go tracing traces the build when using custom build steps" | ||
env: | ||
# Enable reconciled Go tracing beta functionality | ||
CODEQL_ACTION_RECONCILE_GO_EXTRACTION: "true" | ||
steps: | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: "^1.13.1" | ||
- uses: ./../action/init | ||
with: | ||
languages: go | ||
tools: ${{ steps.prepare-test.outputs.tools-url }} | ||
env: | ||
TEST_MODE: true | ||
- name: Build code | ||
shell: bash | ||
run: go build main.go | ||
- uses: ./../action/analyze | ||
env: | ||
TEST_MODE: true | ||
- shell: bash | ||
run: | | ||
if [[ -v CODEQL_ACTION_DID_AUTOBUILD_GOLANG ]]; then | ||
echo "Expected the Go autobuilder not to be run, but the" \ | ||
"CODEQL_ACTION_DID_AUTOBUILD_GOLANG environment variable was set." | ||
exit 1 | ||
fi | ||
cd "$RUNNER_TEMP/codeql_databases" | ||
if [[ ! -d go ]]; then | ||
echo "Did not find a Go database" | ||
exit 1 | ||
fi |