migrate Drone CI workflow to Gitea Actions
Some checks failed
Build Firmware / Compile (push) Failing after 9s

This commit is contained in:
Stefan Kalscheuer 2025-02-02 11:52:58 +01:00
parent e65dcb8ef2
commit 1bb0168463
Signed by: stefan
GPG Key ID: 3887EC2A53B55430
2 changed files with 19 additions and 11 deletions

View File

@ -1,11 +0,0 @@
kind: pipeline
type: docker
name: default
steps:
- name: build-firmware
image: stklcode/avr-toolchain
commands:
- avr-gcc --version
- cd firmware
- make compile info

View File

@ -0,0 +1,19 @@
---
name: Build Firmware
on: [push, pull_request]
jobs:
build-firmware:
name: Compile
runs-on: ubuntu-latest
steps:
- name: Setup AVR-GCC
run: |
apt-get update
apt-get install --no-install-recommends -y gcc-avr binutils-avr avr-libc
- name: Compile
working-directory: firmware
run: make compile info