Pudding_LWGW_BR2/.drone.yml

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