#10 Updates
- Added check for updates at boot - Updated post update script to update OP25 and PDAB - Added initial makefile to replace the `setup.sh` - Added new test to make sure makefile builds - Renamed socket tests
This commit is contained in:
28
.gitea/workflows/DRBv3_Client_Build_test.yaml
Normal file
28
.gitea/workflows/DRBv3_Client_Build_test.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
name: DRB Client Makefile Build Test
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '14'
|
||||
|
||||
- name: Run setup process
|
||||
run: make -j4
|
||||
|
||||
- name: Start discord-radio-bot service
|
||||
run: systemctl start discord-radio-bot.service
|
||||
@@ -1,6 +1,12 @@
|
||||
name: Run Discord Radio Bot v3 Tests
|
||||
name: DRB Socket Communication Tests
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
env:
|
||||
NODE_ENV: development
|
||||
Reference in New Issue
Block a user