author | Pete Batard <pete@akeo.ie> | 2024年12月21日 11:22:25 +0100 |
---|---|---|
committer | Pete Batard <pete@akeo.ie> | 2024年12月21日 11:49:34 +0100 |
commit | 2273bd0e89bd034b779e14ce27ccda4ca2f4410e (patch) | |
tree | 08a29ea8bf7798d30b2da3ab2cd0985e6fdbf200 | |
parent | 19414c9d3528a73ba6ddf2a14c90cc237ac4587c (diff) | |
download | libcdio-2273bd0e89bd034b779e14ce27ccda4ca2f4410e.tar.gz |
-rw-r--r-- | .github/workflows/vs2022.yml | 25 |
diff --git a/.github/workflows/vs2022.yml b/.github/workflows/vs2022.yml new file mode 100644 index 00000000..1477e8f8 --- /dev/null +++ b/.github/workflows/vs2022.yml @@ -0,0 +1,25 @@ +name: Windows, VS2022 + +on: [push, pull_request] + +env: + SOLUTION_FILE_PATH: ./libcdio.sln + +jobs: + build: + runs-on: windows-latest + + strategy: + matrix: + TARGET_PLATFORM: [x86, x64] + BUILD_CONFIGURATION: [Debug, Release] + + steps: + - uses: actions/checkout@v4 + - name: Setup + uses: microsoft/setup-msbuild@v2 + with: + msbuild-architecture: x64 + - name: Build + shell: cmd + run: msbuild ${{ env.SOLUTION_FILE_PATH }} /m /p:Configuration=${{ matrix.BUILD_CONFIGURATION }},Platform=${{ matrix.TARGET_PLATFORM }} |