Files
wownero-lws/.gitea/workflows/build.yaml
such-gitea 22f77429a5
Some checks failed
Build Wowlet / build-macos (push) Failing after 35s
Update .gitea/workflows/build.yaml
2026-01-04 13:18:14 -08:00

33 lines
859 B
YAML

name: Build Wowlet
on:
push:
workflow_dispatch:
jobs:
build-macos:
runs-on: macos-latest # Runs on your Mac Mini
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive # Wowlet/Wownero usually need submodules
- name: Prepare Environment
run: |
echo "Checking dependency versions..."
cmake --version
qmake --version || echo "QMake found via brew"
- name: Build macOS
run: |
mkdir build
cd build
# Standard CMake build for Mac
cmake .. -DCMAKE_PREFIX_PATH=$(brew --prefix qt@5) -DCMAKE_BUILD_TYPE=Release
make -j$(sysctl -n hw.ncpu)
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: wowlet-macos
path: build/wowlet.app