Skip to content

Commit cad8c8e

Browse files
Don't use shared compilation
1 parent 8caa080 commit cad8c8e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pr-checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,13 @@ jobs:
211211
run: |
212212
cat ./codeql-runner/codeql-env.sh | Invoke-Expression
213213
$Env:CODEQL_EXTRACTOR_CSHARP_ROOT = ""
214-
& $Env:CODEQL_RUNNER dotnet build
214+
& $Env:CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
215215
216216
- name: Upload tracer logs
217217
uses: actions/upload-artifact@v2
218218
with:
219219
name: tracer-logs
220-
path: ./codeql-runner
220+
path: ./codeql-runner/compound-build-tracer.log
221221

222222
- name: Run analyze
223223
run: |

tests/multi-language-repo/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
gcc -o main main.c
44

5-
dotnet build
5+
dotnet build /p:UseSharedCompilation=false
66

77
javac Main.java
88

0 commit comments

Comments
 (0)