File tree 5 files changed +13
-7
lines changed
tests/multi-language-repo
5 files changed +13
-7
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,7 +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
+
216
+ - name : Upload tracer logs
217
+ uses : actions/upload-artifact@v2
218
+ with :
219
+ name : tracer-logs
220
+ path : ./codeql-runner/compound-build-tracer.log
215
221
216
222
- name : Run analyze
217
223
run : |
@@ -249,7 +255,7 @@ jobs:
249
255
shell : bash
250
256
run : |
251
257
. ./codeql-runner/codeql-env.sh
252
- $CODEQL_RUNNER dotnet build
258
+ $CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
253
259
254
260
- name : Run analyze
255
261
run : |
Original file line number Diff line number Diff line change 2
2
3
3
## [ UNRELEASED]
4
4
5
- No user facing changes.
5
+ - Update default CodeQL bundle version to 2.6.2. [ # 746 ] ( https://github.com/github/codeql-action/pull/746 )
6
6
7
7
## 1.0.14 - 09 Sep 2021
8
8
Original file line number Diff line number Diff line change 1
1
{
2
- "bundleVersion" : " codeql-bundle-20210909 "
2
+ "bundleVersion" : " codeql-bundle-20210921 "
3
3
}
Original file line number Diff line number Diff line change 1
1
{
2
- "bundleVersion" : " codeql-bundle-20210909 "
2
+ "bundleVersion" : " codeql-bundle-20210921 "
3
3
}
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