File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed
tests/multi-language-repo Expand file tree Collapse file tree 5 files changed +13
-7
lines changed 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,7 +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
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
215221
216222 - name : Run analyze
217223 run : |
@@ -249,7 +255,7 @@ jobs:
249255 shell : bash
250256 run : |
251257 . ./codeql-runner/codeql-env.sh
252- $CODEQL_RUNNER dotnet build
258+ $CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
253259
254260 - name : Run analyze
255261 run : |
Original file line number Diff line number Diff line change 22
33## [ UNRELEASED]
44
5- No user facing changes.
5+ - Update default CodeQL bundle version to 2.6.2. [ # 746 ] ( https://github.com/github/codeql-action/pull/746 )
66
77## 1.0.14 - 09 Sep 2021
88
Original file line number Diff line number Diff line change 11{
2- "bundleVersion" : " codeql-bundle-20210909 "
2+ "bundleVersion" : " codeql-bundle-20210921 "
33}
Original file line number Diff line number Diff line change 11{
2- "bundleVersion" : " codeql-bundle-20210909 "
2+ "bundleVersion" : " codeql-bundle-20210921 "
33}
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