We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 260e367 + 5a29c47 commit c07407aCopy full SHA for c07407a
.github/workflows/build.yaml
@@ -68,6 +68,15 @@ jobs:
68
- name: Combine SARIF files
69
run: |
70
npx @microsoft/sarif-multitool merge --merge-runs --output-file merged.sarif $(find . -iname '*.sarif*')
71
+ env:
72
+ # Disables globalization support.
73
+ # This makes the @microsoft/sarif-multitool work without ICU package installed.
74
+ # If not disabled, we get the following error:
75
+ # > Process terminated.
76
+ # > Couldn't find a valid ICU package installed on the system.
77
+ # > Set the configuration flag System.Globalization.Invariant to true
78
+ # > if you want to run with no globalization support.
79
+ DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
80
- name: Upload SARIF file
81
uses: github/codeql-action/upload-sarif@v3
82
with:
0 commit comments