70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
---
|
|
platform: linux/arm64
|
|
|
|
variables:
|
|
- &default
|
|
image: "git.freifunk-rhein-sieg.net/freifunk-troisdorf/docker-gluon-build:latest"
|
|
pull: true
|
|
environment:
|
|
- input_version=${CI_COMMIT_TAG}
|
|
- GLUON_SITEDIR=..
|
|
- FORCE_UNSAFE_CONFIGURE=1
|
|
- GLUON_TARGET=${TARGET}
|
|
- GLUON_DEPRECATED=1
|
|
when:
|
|
event: push
|
|
branch: next
|
|
|
|
workspace:
|
|
base: /build
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
recursive: true
|
|
when:
|
|
event: push
|
|
branch: next
|
|
|
|
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
|
|
- make -j$(nproc) GLUON_AUTOUPDATER_BRANCH=${CI_COMMIT_BRANCH} GLUON_AUTOUPDATER_ENABLED=1 GLUON_RELEASE=$input_version-${CI_COMMIT_BRANCH} GLUON_OUTPUTDIR=output/next
|
|
|
|
list_images:
|
|
<<: *default
|
|
commands:
|
|
- mkdir -p gluon/output/${CI_COMMIT_BRANCH}/images/factory
|
|
- echo "${TARGET}" > gluon/output/${CI_COMMIT_BRANCH}/images/factory/${TARGET}
|
|
- ls -alh gluon/output/${CI_COMMIT_BRANCH}/images/factory
|
|
|
|
publish:
|
|
image: woodpeckerci/plugin-gitea-release
|
|
settings:
|
|
base_url: https://git.freifunk-rhein-sieg.net
|
|
files:
|
|
- gluon/output/next/*
|
|
api_key:
|
|
from_secret: api_key
|
|
target: next
|
|
prerelease: true
|
|
when:
|
|
event: tag
|
|
|
|
matrix:
|
|
TARGET:
|
|
- ramips-mt7621 |