Add project-unsignedchar #184
This file contains 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: 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 |