diff --git a/.github/workflows/windows_latest.yml b/.github/workflows/windows_latest.yml new file mode 100644 index 0000000..46c2688 --- /dev/null +++ b/.github/workflows/windows_latest.yml @@ -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 \ No newline at end of file