We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8caa080 commit cad8c8eCopy full SHA for cad8c8e
.github/workflows/pr-checks.yml
@@ -211,13 +211,13 @@ jobs:
211
run: |
212
cat ./codeql-runner/codeql-env.sh | Invoke-Expression
213
$Env:CODEQL_EXTRACTOR_CSHARP_ROOT = ""
214
- & $Env:CODEQL_RUNNER dotnet build
+ & $Env:CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
215
216
- name: Upload tracer logs
217
uses: actions/upload-artifact@v2
218
with:
219
name: tracer-logs
220
- path: ./codeql-runner
+ path: ./codeql-runner/compound-build-tracer.log
221
222
- name: Run analyze
223
tests/multi-language-repo/build.sh
@@ -2,7 +2,7 @@
2
3
gcc -o main main.c
4
5
-dotnet build
+dotnet build /p:UseSharedCompilation=false
6
7
javac Main.java
8
0 commit comments