This commit is contained in:
parent
a017b13800
commit
f1ce4da927
2 changed files with 11 additions and 11 deletions
|
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: self-hosted
|
|
||||||
steps:
|
|
||||||
- run: echo "All good from tuxdock runner on $(hostname)!"
|
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue