This commit is contained in:
parent
426dd6e196
commit
b695c3f8ef
1 changed files with 23 additions and 0 deletions
23
.forgejo/workflows/build.yaml
Normal file
23
.forgejo/workflows/build.yaml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Build TuxDock
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
- dev
|
||||
- feature/**
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: [self-hosted]
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Compile tux-dock
|
||||
run: |
|
||||
#!/bin/sh
|
||||
g++ -std=c++17 main.cpp -o tux-dock && echo "tux-dock successfully compiled!"
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue