summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/arm64.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/arm64.yml b/.github/workflows/arm64.yml
new file mode 100644
index 0000000..8e6a072
--- /dev/null
+++ b/.github/workflows/arm64.yml
@@ -0,0 +1,19 @@
+name: FW CI
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install Packages
+ run: sudo apt update && sudo apt install gcc-arm-none-eabi
+ - name: Build FW (ARM64)
+ run: cd src && make all \ No newline at end of file