Skip to content

added ports section #11

added ports section

added ports section #11

name: macOS aarch64 Build
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: |
cmake -B build \
-DCMAKE_BUILD_TYPE=Dev_Release \
-DCMAKE_OSX_ARCHITECTURES=arm64 \
-S ${{ github.workspace }}
- name: Build
run: cmake --build build --config Release
- name: Upload binary artifact
uses: actions/upload-artifact@v4
with:
name: vmaware-macos-aarch64
path: build/vmaware
if-no-files-found: error
retention-days: 30