Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Add build with visual studio (project generated with premake). #110

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/windows-premake-msvc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Windows-premake-msvc
on: [push, pull_request]
jobs:
Build-Guisan:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: install premake5
uses: Jarod42/install-premake5@v1

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

- name: run premake5
run: premake5.exe vs2022 --to=solution/vs2022

- name: build
run: |
cd solution/vs2022
nuget install packages.config -OutputDirectory packages
msbuild.exe /property:Configuration=Release Guisan.sln

- name: artifact
uses: actions/upload-artifact@v4
with:
name: guisan-msvc
path: |
solution/vs2022/bin/Release/**.*
44 changes: 0 additions & 44 deletions Guisan.sln

This file was deleted.

268 changes: 0 additions & 268 deletions Guisan.vcxproj

This file was deleted.

Loading