Testing build action, removing included build binary file
All checks were successful
Build TuxDock / build (push) Successful in 4s
/ test (push) Successful in 3s

This commit is contained in:
mrkmntal 2025-11-03 16:14:16 -05:00
commit a017b13800
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,21 @@
name: Build TuxDock
on: [push]
jobs:
build:
runs-on: [self-hosted]
steps:
- name: Manual clone
run: |
git clone https://mentalnet.xyz/forgejo/markmental/tuxdock.git .
echo "✅ Repository cloned successfully"
- name: Compile tux-dock
run: |
g++ -std=c++17 main.cpp -o tux-dock && echo "🎉 tux-dock successfully compiled!"
- name: Verify build
run: |
file tux-dock || echo "⚠️ tux-dock binary not found!"