This commit is contained in:
parent
1218614e68
commit
56b3d8a376
2 changed files with 8 additions and 25 deletions
|
|
@ -1,25 +0,0 @@
|
|||
name: Build TuxDock
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
- dev
|
||||
- feature/**
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: [self-hosted]
|
||||
env:
|
||||
FORGEJO_SERVER_URL: https://mentalnet.xyz/forgejo
|
||||
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!"
|
||||
|
||||
|
||||
8
.forgejo/workflows/test.yaml
Normal file
8
.forgejo/workflows/test.yaml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
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