-
Notifications
You must be signed in to change notification settings - Fork 46
61 lines (53 loc) · 1.59 KB
/
dev-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
name: Build and Test develop
run-name: Build ${{ github.ref }} ${{ github.sha }}
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
Build-Hobbits:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/setup-node@v3
with:
node-version: 14
- name: Check out repo
uses: actions/checkout@v3
with:
submodules: 'true'
- 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
run: |
npm ci
cd tests
./prepare_tests.js
export QT_DEBUG_PLUGINS=1
./test_hobbits.js ${{ github.workspace }}/build/bin/hobbits-runner -p ${{ github.workspace }}/build/plugins
cd ${{ github.workspace }}
- name: Package Build Artifacts
run: ninja package -C build
- uses: actions/upload-artifact@v3
with:
name: DEB Packages ${{ matrix.os }}
path: build/hobbits-*deb*
Check-Artifacts:
needs: Build-Hobbits
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- name: Check Files
run: ls -R