site/.woodpecker/build-stable.yml

84 lines
1.7 KiB
YAML
Raw Normal View History

2023-05-25 10:56:53 +00:00
---
platform: linux/arm64
variables:
- &default
image: "git.freifunk-rhein-sieg.net/freifunk-troisdorf/docker-gluon-build:latest"
pull: true
environment:
2023-05-25 11:34:45 +00:00
- input_version=${CI_COMMIT_TAG}
2023-05-25 10:56:53 +00:00
- GLUON_SITEDIR=..
- FORCE_UNSAFE_CONFIGURE=1
- GLUON_TARGET=${TARGET}
- GLUON_DEPRECATED=1
workspace:
base: /build
clone:
2023-05-25 12:20:47 +00:00
git:
image: woodpeckerci/plugin-git
settings:
recursive: true
2023-05-25 10:56:53 +00:00
pipeline:
make_update:
<<: *default
commands:
- cd gluon
- make update
patch-iw-to-iw-full:
<<: *default
commands:
- sed -i 's/+iw /+iw-full /g' gluon/openwrt/package/kernel/mac80211/Makefile
build:
<<: *default
commands:
- cd gluon
2023-05-25 18:55:58 +00:00
- make -j$(nproc) GLUON_AUTOUPDATER_BRANCH=${BRANCH} GLUON_AUTOUPDATER_ENABLED=1 GLUON_RELEASE=$input_version-${BRANCH} GLUON_OUTPUTDIR=output/${BRANCH}
2023-05-25 12:14:31 +00:00
2023-05-25 10:56:53 +00:00
upload:
image: appleboy/drone-scp
settings:
host: 46.4.138.183
user: fwupload
key:
from_secret: ssh-key
strip_components: 2
2023-05-31 18:31:08 +00:00
target: /srv/fwuploads-tmp/troisdorf/multi/
2023-05-25 18:55:58 +00:00
source: gluon/output/${BRANCH}/*
2023-05-25 12:19:31 +00:00
when:
event: tag
2023-05-25 10:56:53 +00:00
matrix:
TARGET:
- ath79-generic
- ath79-mikrotik
- ath79-nand
- bcm27xx-bcm2708
- bcm27xx-bcm2709
- ipq40xx-generic
- ipq40xx-mikrotik
- ipq806x-generic
- lantiq-xrx200
- lantiq-xway
- mediatek-mt7622
- mpc85xx-p1010
- mpc85xx-p1020
- ramips-mt7620
- ramips-mt7621
- ramips-mt76x8
- realtek-rtl838x
- rockchip-armv8
- sunxi-cortexa7
- x86-64
- x86-generic
- x86-geode
- x86-legacy
2023-05-31 16:22:57 +00:00
BRANCH:
2023-05-25 18:22:02 +00:00
- beta
2023-05-25 10:56:53 +00:00
depends_on:
2023-05-25 12:17:24 +00:00
- prepare