Testing build action, removing included build binary file
This commit is contained in:
parent
56b3d8a376
commit
a017b13800
2 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/build.yaml
Normal file
21
.forgejo/workflows/build.yaml
Normal 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!"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue