From ed62e46790133aebcc36c415c812b1978c5481c6 Mon Sep 17 00:00:00 2001 From: sergewar Date: Thu, 18 Dec 2025 10:23:52 +0200 Subject: [PATCH] Add github actions --- .github/workflows/build.yml | 21 +++++++++++++++++++++ .gitignore | 1 + 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..fa2f3f9 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build firmware + +on: + push: + branches: ['**'] + +jobs: + build: + runs-on: ubuntu-latest + container: + image: debian:trixie + + steps: + - uses: actions/checkout@v6 + + - name: Install dependencies + run: | + apt update + apt install make gcc sdcc xxd python-is-python3 libjson-c-dev -y + - name: Make project + run: make \ No newline at end of file diff --git a/.gitignore b/.gitignore index 86d2948..3ccb281 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .gitignore +.idea/ output/ html_data.c html_data.h