Skip to content

Menu functions now, but still needs improvement #22

Menu functions now, but still needs improvement

Menu functions now, but still needs improvement #22

Workflow file for this run

name: XMake Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
build_configuration: [debug, release] # Build both configurations
architecture: [x64]
steps:
- name: Checkout Repository with Submodules
uses: actions/checkout@v4
with:
submodules: recursive # Fetch submodules recursively
fetch-depth: 0 # Ensures a full clone (needed for some submodules)
- name: Initialize and Update Submodules (if needed)
run: |
git submodule sync --recursive
git submodule update --init --recursive
- name: Install XMake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
- name: Configure XMake
run: |
xmake f -m ${{ matrix.build_configuration }} -a ${{ matrix.architecture }}
- name: Build with XMake
run: |
xmake build
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.build_configuration }}
path: Build/${{ matrix.build_configuration }}/Internal/Internal.dll