migrate Drone CI workflow to Gitea Actions
All checks were successful
Build Firmware / Compile (push) Successful in 12s

This commit is contained in:
2025-02-02 17:22:21 +01:00
parent 0e2b0cbde1
commit 4302d31841
2 changed files with 23 additions and 12 deletions

23
.gitea/workflows/ci.yml Normal file
View File

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