Skip to content

Commit

Permalink
CI: Added CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixfri committed Dec 22, 2024
1 parent d460566 commit a417e13
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/windows_latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
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@v2
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/
move Resources debug-artifact/
mkdir release-artifact
move bin/windows_x64_release/FlashlightEngine.exe release-artifact/
move Resources release-artifact/
- uses: actions/upload-artifact@v2
with:
name: FlashlightEngine-windows-debug-${{ github.run_id }}
path: debug-artifact/
name: Upload debug artifact

- uses: actions/upload-artifact@v2
with:
name: FlashlightEngine-windows-release-${{ github.run_id }}
path: release-artifact/
name: Upload release artifact

0 comments on commit a417e13

Please sign in to comment.