Skip to content

Commit

Permalink
Don't use shared compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
edoardopirovano committed Sep 21, 2021
1 parent 8caa080 commit cad8c8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,13 +211,13 @@ jobs:
run: |
cat ./codeql-runner/codeql-env.sh | Invoke-Expression
$Env:CODEQL_EXTRACTOR_CSHARP_ROOT = ""
& $Env:CODEQL_RUNNER dotnet build
& $Env:CODEQL_RUNNER dotnet build /p:UseSharedCompilation=false
- name: Upload tracer logs
uses: actions/upload-artifact@v2
with:
name: tracer-logs
path: ./codeql-runner
path: ./codeql-runner/compound-build-tracer.log

- name: Run analyze
run: |
Expand Down
2 changes: 1 addition & 1 deletion tests/multi-language-repo/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

gcc -o main main.c

dotnet build
dotnet build /p:UseSharedCompilation=false

javac Main.java

0 comments on commit cad8c8e

Please sign in to comment.