We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 355e3d0 commit 50189f2Copy full SHA for 50189f2
.github/workflows/test_build.yml
@@ -0,0 +1,28 @@
1
+name: test regression
2
+
3
+on: [push, pull_request, workflow_dispatch]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-22.04
8
+ steps:
9
+ # git checkout the PR
10
+ - uses: actions/checkout@v3
11
12
+ - name: Install sdcc
13
+ run: |
14
+ sudo apt-get install -y sdcc
15
+ python3 -m pip install intelhex
16
17
+ - name: test build
18
+ shell: bash
19
20
+ tests/test_build.sh
21
22
+ - name: Archive build binaries
23
+ uses: actions/upload-artifact@v3
24
+ with:
25
+ name: SiK build
26
+ path: |
27
+ Firmware/dst
28
+ retention-days: 90
tests/test_build.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+cd Firmware
+make
+make install
0 commit comments