-
-
Notifications
You must be signed in to change notification settings - Fork 2
59 lines (57 loc) · 1.63 KB
/
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
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libv4l-dev libinput-dev libfltk1.3-dev
version: 1.0
- name: Build Application
run: |
mkdir -p bin
make -f Makefile.linux
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Setup Python
uses: actions/setup-python@v3
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
pio update
- name: Build VKM Firmware
run: |
pio run -e arduino
pio run -e vkm-b-controller
pio run -e vkm-b-periphery
mv bin/fw/build/arduino/firmware.hex bin/arduino-leonardo.hex
mv bin/fw/build/vkm-b-controller/firmware.bin bin/vkm-b-controller.bin
mv bin/fw/build/vkm-b-periphery/firmware.bin bin/vkm-b-periphery.bin
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: binaries
path: |
bin/vkvm
bin/arduino-leonardo.hex
bin/vkm-b-controller.bin
bin/vkm-b-periphery.bin