Skip to content

Commit 79bbb17

Browse files
committed
Remove PR checks that are now duplicated
Direct tracing is now enabled by default.
1 parent 67a0080 commit 79bbb17

File tree

4 files changed

+42
-137
lines changed

4 files changed

+42
-137
lines changed

.github/workflows/__autobuild-direct-tracing.yml

Lines changed: 0 additions & 103 deletions
This file was deleted.

.github/workflows/__build-mode-autobuild.yml

Lines changed: 31 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/autobuild-direct-tracing.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

pr-checks/checks/build-mode-autobuild.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: "Build mode autobuild"
22
description: "An end-to-end integration test of a Java repository built using 'build-mode: autobuild'"
3-
versions: ["nightly-latest"]
3+
operatingSystems: ["ubuntu", "windows"]
4+
versions: ["linked", "nightly-latest"]
5+
installJava: "true"
46
steps:
57
- name: Set up Java test repo configuration
68
run: |
@@ -25,4 +27,12 @@ steps:
2527
exit 1
2628
fi
2729
30+
- name: Check that indirect tracing is disabled
31+
run: |
32+
if [[ ! -z "${CODEQL_RUNNER}" ]]; then
33+
echo "Expected indirect tracing to be disabled, but the" \
34+
"CODEQL_RUNNER environment variable is set."
35+
exit 1
36+
fi
37+
2838
- uses: ./../action/analyze

0 commit comments

Comments
 (0)