summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/Code-Scanning.yml7
-rw-r--r--.github/workflows/ci-pr.yml4
-rw-r--r--.github/workflows/ci.yml4
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 }}