diff options
| author | JakobL-MSFT <[email protected]> | 2023-02-07 15:36:48 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-02-07 15:36:48 -0800 |
| commit | 208b227667182dfcd7bdf3ab4f5090aa823cf477 (patch) | |
| tree | 1b7d8ad37d67108ef7225b66eed00030f581584d /.github/workflows | |
| parent | 9ab70a3207b3586eeef00298911b05e425d5a3a9 (diff) | |
Enable CodeQL to work thru reasonable workarounds. (#857)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/Code-Scanning.yml | 7 | ||||
| -rw-r--r-- | .github/workflows/ci-pr.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
3 files changed, 8 insertions, 7 deletions
diff --git a/.github/workflows/Code-Scanning.yml b/.github/workflows/Code-Scanning.yml index 86be1ef0..1ba4c660 100644 --- a/.github/workflows/Code-Scanning.yml +++ b/.github/workflows/Code-Scanning.yml @@ -48,10 +48,11 @@ jobs: - name: Retrieve and build all available solutions id: build-all-samples run: | - .\Build-AllSamples.ps1 -Verbose + .\Build-AllSamples.ps1 -Verbose -ThrottleLimit 1 env: - Configuration: Debug - Platform: x64 + WDS_Configuration: Debug + WDS_Platform: x64 + WDS_WipeOutputs: ${{ true }} - name: Perform CodeQL analysis uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index c701bd23..fa115e25 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -36,5 +36,5 @@ jobs: $changedFiles = "${{ steps.get-changed-files.outputs.all_changed_files }}".Split(',') .\.github\scripts\Build-ChangedSamples.ps1 -ChangedFiles $changedFiles -Verbose env: - Configuration: ${{ matrix.configuration }} - Platform: ${{ matrix.platform }} + WDS_Configuration: ${{ matrix.configuration }} + WDS_Platform: ${{ matrix.platform }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8063d6e..6b97cfff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,5 +29,5 @@ jobs: run: | .\Build-AllSamples.ps1 -Verbose env: - Configuration: ${{ matrix.configuration }} - Platform: ${{ matrix.platform }} + WDS_Configuration: ${{ matrix.configuration }} + WDS_Platform: ${{ matrix.platform }} |
