File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
tests/multi-language-repo Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171
171
- name : Build code
172
172
run : |
173
173
. ./codeql-runner/codeql-env.sh
174
- $CODEQL_RUNNER dotnet build
174
+ $CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
175
175
176
176
- name : Run analyze
177
177
run : |
@@ -211,13 +211,13 @@ jobs:
211
211
run : |
212
212
cat ./codeql-runner/codeql-env.sh | Invoke-Expression
213
213
$Env:CODEQL_EXTRACTOR_CSHARP_ROOT = ""
214
- & $Env:CODEQL_RUNNER dotnet build
214
+ & $Env:CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
215
215
216
216
- name : Upload tracer logs
217
217
uses : actions/upload-artifact@v2
218
218
with :
219
219
name : tracer-logs
220
- path : ./codeql-runner
220
+ path : ./codeql-runner/compound-build-tracer.log
221
221
222
222
- name : Run analyze
223
223
run : |
@@ -255,7 +255,7 @@ jobs:
255
255
shell : bash
256
256
run : |
257
257
. ./codeql-runner/codeql-env.sh
258
- $CODEQL_RUNNER dotnet build
258
+ $CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
259
259
260
260
- name : Run analyze
261
261
run : |
Original file line number Diff line number Diff line change 2
2
3
3
gcc -o main main.c
4
4
5
- dotnet build
5
+ dotnet build /p:UseSharedCompilation=false
6
6
7
7
javac Main.java
8
8
You can’t perform that action at this time.
0 commit comments