Build Artifact test
Some checks failed
Build & Upload tux-dock / build (push) Failing after 19s

This commit is contained in:
mrkmntal 2025-11-03 16:20:39 -05:00
commit f1ce4da927
2 changed files with 11 additions and 11 deletions

View file

@ -1,4 +1,4 @@
name: Build TuxDock name: Build & Upload tux-dock
on: [push] on: [push]
@ -13,9 +13,17 @@ jobs:
- name: Compile tux-dock - name: Compile tux-dock
run: | run: |
g++ -std=c++17 main.cpp -o tux-dock && echo "🎉 tux-dock successfully compiled!" g++ -std=c++17 main.cpp -o tux-dock
echo "🎉 tux-dock successfully compiled!"
- name: Verify build - name: Verify build
run: | run: |
file tux-dock || echo "⚠️ tux-dock binary not found!" file tux-dock
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: tux-dock-linux-x86_64
path: tux-dock

View file

@ -1,8 +0,0 @@
on: [push]
jobs:
test:
runs-on: self-hosted
steps:
- run: echo "All good from tuxdock runner on $(hostname)!"