Files
wownero-lws/.gitea/workflows/build.yaml
such-gitea 17dbccfd14
Some checks failed
Build Wownero LWS / build-macos (push) Successful in 1m41s
Build Wownero LWS / build-linux (push) Successful in 1m56s
Build Wownero LWS / build-windows (push) Failing after 1m4s
Update .gitea/workflows/build.yaml
2026-01-06 08:39:55 -08:00

193 lines
6.7 KiB
YAML

name: Build Wownero LWS
on:
push:
workflow_dispatch:
# --- GLOBAL FIX FOR SSL UPLOADS ---
env:
NODE_TLS_REJECT_UNAUTHORIZED: '0'
# ----------------------------------
jobs:
build-macos:
runs-on: macos-latest
steps:
- name: Manual Checkout (Local)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "Cleaning workspace..."
rm -rf *
git config --global --add safe.directory '*'
# Clone from Localhost (Port 3000)
echo "Cloning from Localhost..."
git clone http://oauth2:$GITHUB_TOKEN@localhost:3000/${{ github.repository }}.git .
# Update Submodules
git config --global url."https://github.com/".insteadOf "git@github.com:"
git config --global url."https://codeberg.org/".insteadOf "git@codeberg.org:"
echo "Initializing submodules..."
git submodule update --init --recursive
- name: Prepare Environment
run: |
cmake --version
qmake --version || echo "QMake found via brew"
- name: Patch for macOS (Remove librt)
run: |
echo "Patching CMakeLists..."
perl -i -pe 's/\brt\b//g' src/CMakeLists.txt
if [ -f "CMakeLists.txt" ]; then
perl -i -pe 's/\brt\b//g' CMakeLists.txt
fi
- name: Build macOS
run: |
mkdir build && cd build
cmake .. -DCMAKE_PREFIX_PATH=$(brew --prefix qt@5) -DCMAKE_BUILD_TYPE=Release
make -j$(sysctl -n hw.ncpu)
- name: Package macOS
run: |
cd build/src
zip ../../wownero-lws-macos.zip wownero-lws-daemon wownero-lws-admin wownero-lws-client
- name: Upload macOS Artifact
uses: actions/upload-artifact@v3
with:
name: wownero-lws-macos
path: wownero-lws-macos.zip
- name: Release macOS
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: wownero-lws-macos.zip
build-linux:
runs-on: ubuntu-latest
steps:
- name: Manual Checkout (LAN)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
rm -rf *
# Clone from Mac's LAN IP
git clone http://oauth2:$GITHUB_TOKEN@192.168.88.230:3000/${{ github.repository }}.git .
git config --global url."https://github.com/".insteadOf "git@github.com:"
git submodule update --init --recursive
- name: Build Linux
run: |
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j$(nproc)
- name: Package Linux
run: |
cd build/src
zip ../../wownero-lws-linux.zip wownero-lws-daemon wownero-lws-admin wownero-lws-client
- name: Upload Linux Artifact
uses: actions/upload-artifact@v3
with:
name: wownero-lws-linux
path: wownero-lws-linux.zip
- name: Release Linux
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: wownero-lws-linux.zip
build-windows:
runs-on: windows-latest
steps:
- name: Manual Checkout (LAN)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
rm -rf *
git clone http://oauth2:$GITHUB_TOKEN@192.168.88.230:3000/${{ github.repository }}.git .
git config --global url."https://github.com/".insteadOf "git@github.com:"
git submodule update --init --recursive
# --- 1. CLEANUP ---
- name: Nuke Old Boost Cache
run: |
echo "Nuking cache..."
rm -rf external/monero/contrib/depends/work/build/x86_64-w64-mingw32/boost
rm -rf external/monero/contrib/depends/built/x86_64-w64-mingw32/boost
rm -rf external/monero/contrib/depends/work/download/boost*
# Delete the patch directory to clear any "directory-as-file" errors
rm -rf external/monero/contrib/depends/packages/boost
# --- 2. UPGRADE BOOST (The "Zero-Byte Patch" Fix) ---
- name: Upgrade Boost Version to 1.80.0
run: |
echo "Forcing depends to use Boost 1.80.0..."
BOOST_MK="external/monero/contrib/depends/packages/boost.mk"
BOOST_PATCH_DIR="external/monero/contrib/depends/packages/boost"
# 1. Update Version and Hash
sed -i 's/1_69_0/1_80_0/g' $BOOST_MK
sed -i 's/1.69.0/1.80.0/g' $BOOST_MK
sed -i 's/sha256_hash=.*$/sha256_hash=4b2136f98bdd1f5857f1c3dea9ac2018effe65286cf251534b6ae20cc45e1847/g' $BOOST_MK
# 2. Add Context/Coroutine libraries
sed -i 's/chrono,/chrono,context,coroutine,/g' $BOOST_MK
# 3. MOCK ALL PATCHES
# We recreate the patch directory
mkdir -p $BOOST_PATCH_DIR
# We grep the Makefile for ANY file ending in .patch and overwrite it with 0 bytes.
# This satisfies the build system ("File exists") but does nothing ("Empty content").
grep -o '[a-zA-Z0-9._-]*\.patch' $BOOST_MK | sort | uniq | while read -r patch_file; do
echo "Zeroing out patch: $patch_file"
echo -n "" > "$BOOST_PATCH_DIR/$patch_file"
done
# Safety net: Explicitly create this one in case grep missed it
echo -n "" > "$BOOST_PATCH_DIR/fix_aroptions.patch"
# Debug: Show the empty files
ls -la $BOOST_PATCH_DIR
# --- 3. BUILD DEPENDENCIES ---
- name: Build Windows Dependencies
run: |
cd external/monero/contrib/depends
make HOST=x86_64-w64-mingw32 -j$(nproc)
# --- 4. PATCH APP CODE ---
- name: Patch App Source Code
run: |
echo "Fixing missing <cstdint> include for GCC 13..."
sed -i 's/#include <list>/#include <list>\n#include <cstdint>/' external/monero/contrib/epee/include/net/http_base.h
# --- 5. COMPILE APP ---
- name: Build Windows (Cross-Compile)
run: |
mkdir build && cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=../external/monero/contrib/depends/x86_64-w64-mingw32/share/toolchain.cmake -DCMAKE_BUILD_TYPE=Release
make -j$(nproc)
- name: Package Windows
run: |
cd build/src
zip ../../wownero-lws-windows.zip wownero-lws-daemon.exe wownero-lws-admin.exe wownero-lws-client.exe
- name: Upload Windows Artifact
uses: actions/upload-artifact@v3
with:
name: wownero-lws-windows
path: wownero-lws-windows.zip
- name: Release Windows
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: wownero-lws-windows.zip