-
Notifications
You must be signed in to change notification settings - Fork 4
52 lines (44 loc) · 1.43 KB
/
premake5-windows-msvc-2022.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: premake5-windows-msvc-2022
on:
workflow_dispatch:
push:
paths:
- 'projects/project-*/**'
- '.github/workflows/premake5-windows-msvc-2022.yml'
- '.github/actions/install-premake5/action.yml'
- '!**/*.md'
- '!projects/**/unsupported_by_*'
- '!**/premake4.lua'
- 'projects/**/unsupported_by_vs2022*'
- 'projects/**/unsupported_by_premake5_vs2022'
pull_request:
paths:
- 'projects/project-*/**'
- '.github/workflows/premake5-windows-msvc-2022.yml'
- '.github/actions/install-premake5/action.yml'
- '!**/*.md'
- '!projects/**/unsupported_by_*'
- '!**/premake4.lua'
- 'projects/**/unsupported_by_vs2022*'
- 'projects/**/unsupported_by_premake5_vs2022'
jobs:
windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install premake5
uses: ./.github/actions/install-premake5
with:
repository: premake/premake-core
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: test projects (default=msc)
run: |
#"C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
python3 ./test_projects.py premake5 projects vs2022
shell: bash
- name: test projects (clang)
run: |
python3 ./test_projects.py premake5 projects vs2022 --cc=clang
shell: bash