This commit is contained in:
rusefillc 2023-05-23 17:31:21 -04:00
parent 9353101b31
commit f9233bc3cb
3 changed files with 24 additions and 0 deletions

16
.github/workflows/build-firmware.yaml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Firmware at GHA
on: [ push, pull_request ]
jobs:
build-firmware:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: 1. Compile
run: |
bash compile.sh

6
compile.sh Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# todo: remove 'atlas' part once we have https://github.com/rusefi/rusefi/issues/5284
cd ext/rusefi/firmware/config/boards/atlas
bash ../common_make.sh ../../../../.. custom_platform

2
signature_AT32F435.h Normal file
View File

@ -0,0 +1,2 @@
#define SIGNATURE_HASH 1
#define TS_SIGNATURE "rusEFI AT32F435"