fix format change error for YUY2 #257
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build changes to driver samples | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
paths-ignore: | |
- '**.md' | |
- 'LICENSE' | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [Debug, Release] | |
platform: [x64, arm64] | |
runs-on: windows-2022 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- name: Get changed files | |
id: get-changed-files | |
uses: tj-actions/changed-files@v35 | |
with: | |
separator: "," | |
- name: Retrieve and build solutions from changed files | |
id: build-changed-samples | |
run: | | |
$changedFiles = "${{ steps.get-changed-files.outputs.all_changed_files }}".Split(',') | |
.\.github\scripts\Build-ChangedSamples.ps1 -ChangedFiles $changedFiles -Verbose | |
env: | |
WDS_Configuration: ${{ matrix.configuration }} | |
WDS_Platform: ${{ matrix.platform }} |