2023-05-19 16:33:05 +00:00
|
|
|
variables:
|
|
|
|
- &default
|
|
|
|
image: "git.freifunk-rhein-sieg.net/freifunk-troisdorf/docker-gluon-build:latest"
|
|
|
|
pull: true
|
|
|
|
environment:
|
|
|
|
- input_version=v2022.1.4
|
|
|
|
- GLUON_SITEDIR=../site
|
|
|
|
- FORCE_UNSAFE_CONFIGURE=1
|
|
|
|
- GLUON_TARGET=${TARGET}
|
|
|
|
- GLUON_DEPRECATED=1
|
|
|
|
|
2023-05-19 15:34:17 +00:00
|
|
|
workspace:
|
|
|
|
base: /build
|
2023-05-19 15:33:24 +00:00
|
|
|
|
2019-08-15 17:11:54 +00:00
|
|
|
clone:
|
2023-05-19 14:36:25 +00:00
|
|
|
git:
|
|
|
|
image: woodpeckerci/plugin-git
|
|
|
|
settings:
|
|
|
|
recursive: true
|
2020-02-21 20:20:13 +00:00
|
|
|
|
2023-05-19 14:36:25 +00:00
|
|
|
pipeline:
|
|
|
|
site-multidomain:
|
2020-02-21 19:50:17 +00:00
|
|
|
image: docker:git
|
|
|
|
commands:
|
2023-05-19 14:36:25 +00:00
|
|
|
- cd site
|
|
|
|
- git checkout multidomain
|
2023-05-19 15:58:17 +00:00
|
|
|
|
2023-05-19 14:45:05 +00:00
|
|
|
make_update:
|
2023-05-19 16:33:05 +00:00
|
|
|
<<: *default
|
2023-05-19 14:45:05 +00:00
|
|
|
commands:
|
2023-05-19 15:59:57 +00:00
|
|
|
- pwd
|
2023-05-19 14:45:05 +00:00
|
|
|
- cd gluon
|
|
|
|
- make update
|
2023-05-19 15:43:52 +00:00
|
|
|
|
2023-05-19 16:08:22 +00:00
|
|
|
patch-iw-to-iw-full:
|
2023-05-19 16:33:05 +00:00
|
|
|
<<: *default
|
2023-05-19 15:58:17 +00:00
|
|
|
commands:
|
|
|
|
- cd gluon/openwrt/package
|
|
|
|
- grep -rl +iw kernel/mac80211/Makefile | xargs sed -i s/+iw/+iw-full/g
|
|
|
|
- grep -r iw-full *
|
|
|
|
|
2023-05-19 16:08:22 +00:00
|
|
|
build-${TARGET}:
|
2023-05-19 16:33:05 +00:00
|
|
|
<<: *default
|
2023-05-19 16:08:22 +00:00
|
|
|
commands:
|
|
|
|
- cd gluon
|
2023-05-19 16:36:55 +00:00
|
|
|
- make -j4 GLUON_BRANCH=${BRANCH} GLUON_RELEASE=$input_version-${BRANCH} GLUON_OUTPUTDIR=output/${BRANCH}
|
2023-05-19 16:08:22 +00:00
|
|
|
|
2023-05-19 15:43:52 +00:00
|
|
|
matrix:
|
|
|
|
TARGET:
|
|
|
|
- ath79-generic
|
2023-05-19 16:36:36 +00:00
|
|
|
- x86-64
|
2023-05-19 16:08:22 +00:00
|
|
|
BRANCH:
|
|
|
|
- stable
|