File tree Expand file tree Collapse file tree
tests/multi-language-repo Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171171 - name : Build code
172172 run : |
173173 . ./codeql-runner/codeql-env.sh
174- $CODEQL_RUNNER dotnet build
174+ $CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
175175
176176 - name : Run analyze
177177 run : |
@@ -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 : |
@@ -255,7 +255,7 @@ jobs:
255255 shell : bash
256256 run : |
257257 . ./codeql-runner/codeql-env.sh
258- $CODEQL_RUNNER dotnet build
258+ $CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
259259
260260 - name : Run analyze
261261 run : |
Original file line number Diff line number Diff line change 22
33gcc -o main main.c
44
5- dotnet build
5+ dotnet build -p:UseSharedCompilation=false
66
77javac Main.java
88
You can’t perform that action at this time.
0 commit comments