Nils Stinnesbeck
2e3a9ab866
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
44 lines
845 B
YAML
44 lines
845 B
YAML
workspace:
|
|
base: /build
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
recursive: true
|
|
|
|
pipeline:
|
|
site-multidomain:
|
|
image: docker:git
|
|
commands:
|
|
- cd site
|
|
- git checkout multidomain
|
|
|
|
make_update:
|
|
image: ${IMAGE}
|
|
pull: true
|
|
commands:
|
|
- pwd
|
|
- cd gluon
|
|
- make update
|
|
environment:
|
|
- input_version=v2022.1.4
|
|
- GLUON_SITEDIR=../site
|
|
- FORCE_UNSAFE_CONFIGURE=1
|
|
- GLUON_TARGET=${TARGET}
|
|
- GLUON_DEPRECATED=1
|
|
|
|
patch iw to iw-full:
|
|
image: ${IMAGE}
|
|
pull: true
|
|
commands:
|
|
- cd gluon/openwrt/package
|
|
- grep -rl +iw kernel/mac80211/Makefile | xargs sed -i s/+iw/+iw-full/g
|
|
- grep -r iw-full *
|
|
|
|
matrix:
|
|
TARGET:
|
|
- ath79-generic
|
|
IMAGE:
|
|
- git.freifunk-rhein-sieg.net/freifunk-troisdorf/docker-gluon-build:latest
|