migrate Drone CI workflow to Gitea Actions
All checks were successful
Build Firmware / Compile (push) Successful in 11s
All checks were successful
Build Firmware / Compile (push) Successful in 11s
This commit is contained in:
parent
e65dcb8ef2
commit
d9453e8f7a
11
.drone.yml
11
.drone.yml
@ -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
|
|
23
.github/workflows/build.yml
vendored
Normal file
23
.github/workflows/build.yml
vendored
Normal 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: |
|
||||||
|
apt-get update
|
||||||
|
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
|
Loading…
x
Reference in New Issue
Block a user