forked from libusb/libusb
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 848 Bytes
/
windows.yml
File metadata and controls
37 lines (31 loc) · 848 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
name: Windows build and Package
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os:
- 'windows-2022'
- 'windows-2025'
configuration:
- 'Debug'
- 'Release'
- 'Debug-MT'
- 'Release-MT'
- 'Debug-Hotplug'
- 'Release-Hotplug'
- 'Debug-Hotplug-MT'
- 'Release-Hotplug-MT'
architecture:
- 'Win32'
- 'x64'
- 'ARM64'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.3
- name: Build solution
run: |
msbuild msvc/libusb.sln /m -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.architecture }}