Skip to content

Commit 80b12d6

Browse files
committed
Ensure we don't unset CODEQL_EXTRACTOR_JAVA_AGENT_DISABLE_KOTLIN
1 parent 620a267 commit 80b12d6

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/__unset-environment.yml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/unset-environment.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ steps:
88
tools: ${{ steps.prepare-test.outputs.tools-url }}
99
- name: Build code
1010
shell: bash
11-
run: env -i PATH="$PATH" HOME="$HOME" ./build.sh
11+
# Disable Kotlin analysis while it's incompatible with Kotlin 1.8, until we find a
12+
# workaround for our PR checks.
13+
run: env -i CODEQL_EXTRACTOR_JAVA_AGENT_DISABLE_KOTLIN=true PATH="$PATH" HOME="$HOME" ./build.sh
1214
- uses: ./../action/analyze
1315
id: analysis
1416
- shell: bash

0 commit comments

Comments
 (0)