File: vs2022.yml

package info (click to toggle)
libcdio 2.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,140 kB
  • sloc: ansic: 39,407; cpp: 2,556; sh: 1,263; makefile: 826; yacc: 324; ruby: 116; perl: 34
file content (25 lines) | stat: -rw-r--r-- 569 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 }}