generated from Pixfri/TemplateCppProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Pixfri/github_ci
GitHub CI
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Windows Build | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths-ignore: | ||
- '.gitignore' | ||
- 'LICENSE' | ||
- 'README.md' | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
name: Checkout | ||
|
||
- uses: xmake-io/github-action-setup-xmake@v1 | ||
with: | ||
xmake-version: latest | ||
name: Install xmake | ||
|
||
- name: Build debug | ||
run: | | ||
xmake f -m debug -y -v | ||
xmake -v | ||
- name: Build release | ||
run: | | ||
xmake f -m release -y | ||
xmake | ||
- name: Prepare artifacts | ||
run: | | ||
mkdir debug-artifact | ||
move bin/windows_x64_debug/FlashlightEngine.exe debug-artifact/ | ||
move bin/windows_x64_debug/FlashlightEngine.pdb debug-artifact/ | ||
mkdir release-artifact | ||
move bin/windows_x64_release/FlashlightEngine.exe release-artifact/ | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: FlashlightEngine-windows-debug-${{ github.run_id }} | ||
path: debug-artifact/ | ||
name: Upload debug artifact | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: FlashlightEngine-windows-release-${{ github.run_id }} | ||
path: release-artifact/ | ||
name: Upload release artifact |