Pudding_LWGW_BR2/.drone.yml
Yilin Sun 8bd21e3d9c
Some checks failed
continuous-integration/drone/push Build is failing
Do not use template.
Signed-off-by: Yilin Sun <imi415@imi.moe>
2024-04-16 14:23:20 +08:00

56 lines
1.1 KiB
YAML

---
kind: pipeline
type: vm
name: Build for RPI2
pool:
use: do-docker-20-04
steps:
- name: submodules
commands:
- git submodule update --init --recursive
- name: dependencies
environment:
DEBIAN_FRONTEND: noninteractive
commands:
- apt-get update
- apt-get install -y sed make binutils build-essential diffutils gcc g++ bash patch gzip bzip2 perl tar cpio unzip rsync file bc findutils wget
- name: configure
commands:
- ./buildroot_make.sh rpi2_defconfig
- name: build
commands:
- ./buildroot_make.sh -j4
---
kind: pipeline
type: vm
name: Build for T113i
pool:
use: do-docker-20-04
steps:
- name: submodules
commands:
- git submodule update --init --recursive
- name: dependencies
environment:
DEBIAN_FRONTEND: noninteractive
commands:
- apt-get update
- apt-get install -y sed make binutils build-essential diffutils gcc g++ bash patch gzip bzip2 perl tar cpio unzip rsync file bc findutils wget
- name: configure
commands:
- ./buildroot_make.sh tlt113_minievm_defconfig
- name: build
commands:
- ./buildroot_make.sh -j4