Migrate WIC image I/O to use msw::ComPtr and add dynamic codec enumer… #156
This file contains hidden or 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: VC2019 | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| strategy: | |
| matrix: | |
| config: [Debug, Release] | |
| steps: | |
| - name: Clone | |
| uses: actions/checkout@v3 | |
| - name: MSBuild Setup | |
| uses: microsoft/setup-msbuild@v1.1 | |
| with: | |
| msbuild-architecture: 'x64' | |
| - name: Build | |
| working-directory: ${{github.workspace}} | |
| run: msbuild proj\vc2019\cinder.sln /m /t:rebuild /p:Configuration=${{matrix.config}} | |
| - name: Build Unit Tests | |
| working-directory: ${{github.workspace}}\test\unit | |
| run: msbuild vc2019\unit.sln /m /t:rebuild /p:Configuration=${{matrix.config}} | |
| - name: Run Unit Tests | |
| working-directory: ${{github.workspace}}\test\unit | |
| run: vc2019\build\v142\${{matrix.config}}\x64\CinderUnitTests.exe |