-
Notifications
You must be signed in to change notification settings - Fork 46
74 lines (64 loc) · 2 KB
/
prod-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Build, Test and Release master
run-name: Deploy ${{ github.ref }} ${{ github.sha }}
on:
push:
branches:
- master
jobs:
Build-Hobbits:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Check out repo
uses: actions/checkout@v3
with:
submodules: 'true'
- name: Determine version
run: |
cp ci/justversion.releaserc.json .releaserc.json
npm ci
npx semantic-release
rm .releaserc.json
- name: Install Build Tools
run: sudo apt-get install -y patchelf qtchooser qt5-qmake qtbase5-dev-tools ninja-build cmake g++
- name: Install Development Libraries
run: sudo apt-get install -y libusb-1.0-0-dev libpcap-dev qtbase5-dev python3-dev
- name: Run CMake
run: cmake -G Ninja -B build -S ${{ github.workspace }}
- name: Build
run: cmake --build build
- name: Run Tests
working-directory: ${{ github.workspace }}/tests
run: |
./prepare_tests.js
export QT_DEBUG_PLUGINS=1
./test_hobbits.js ${{ github.workspace }}/build/bin/hobbits-runner -p ${{ github.workspace }}/build/plugins
- name: Package Build Artifacts
run: ninja package -C build
- uses: actions/upload-artifact@v4
with:
name: DEB Packages ${{ matrix.os }}
path: build/hobbits-*deb*
Release-Hobbits:
needs: Build-Hobbits
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
- name: Check Files
run: ls -R
- name: Semantic Release
run: |
npm ci
cp ci/full.releaserc.json .releaserc.json
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}