debugging anchors
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nils Stinnesbeck 2020-02-21 20:50:17 +01:00
parent 96c0b82aaf
commit 4641648897
Signed by: nils
GPG Key ID: 86D4882C6C6CA48B

View File

@ -32,168 +32,168 @@ name: gluon-build
clone: clone:
depth: 50 depth: 50
steps: steps: &steps
- name: submodules - name: submodules
image: docker:git image: docker:git
commands: commands:
- git submodule update --recursive --init - git submodule update --recursive --init
- name: change site to multi - name: change site to multi
image: docker:git image: docker:git
commands: commands:
- cd site - cd site
- git checkout multidomain - git checkout multidomain
# - name: make update - name: make update
# <<: *env <<: *env
# commands: commands:
# - cd gluon - cd gluon
# - make update - make update
# environment: environment:
# GLUON_TARGET: ar71xx-generic GLUON_TARGET: ar71xx-generic
# - name: build-ath79-generic # - name: build-ath79-generic
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ath79-generic # GLUON_TARGET: ath79-generic
# #
# - name: build-ar71xx-generic # - name: build-ar71xx-generic
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ar71xx-generic # GLUON_TARGET: ar71xx-generic
# #
# - name: build-ar71xx-tiny # - name: build-ar71xx-tiny
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ar71xx-tiny # GLUON_TARGET: ar71xx-tiny
# #
# - name: build-ar71xx-nand # - name: build-ar71xx-nand
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ar71xx-nand # GLUON_TARGET: ar71xx-nand
# #
# - name: build-brcm2708-bcm2708 # - name: build-brcm2708-bcm2708
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: brcm2708-bcm2708 # GLUON_TARGET: brcm2708-bcm2708
# #
# - name: build-brcm2708-bcm2709 # - name: build-brcm2708-bcm2709
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: brcm2708-bcm2709 # GLUON_TARGET: brcm2708-bcm2709
# #
# - name: build-mpc85xx-generic # - name: build-mpc85xx-generic
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: mpc85xx-generic # GLUON_TARGET: mpc85xx-generic
# #
# - name: build-mpc85xx-p1020 # - name: build-mpc85xx-p1020
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: mpc85xx-p1020 # GLUON_TARGET: mpc85xx-p1020
# #
# - name: build-x86-generic # - name: build-x86-generic
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: x86-generic # GLUON_TARGET: x86-generic
# #
# - name: build-x86-geode # - name: build-x86-geode
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: x86-geode # GLUON_TARGET: x86-geode
# #
# - name: build-x86-64 # - name: build-x86-64
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: x86-64 # GLUON_TARGET: x86-64
# #
# - name: build-ipq40xx-generic # - name: build-ipq40xx-generic
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ipq40xx-generic # GLUON_TARGET: ipq40xx-generic
# #
# - name: ipq806x-generic # - name: ipq806x-generic
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ipq806x-generic # GLUON_TARGET: ipq806x-generic
# #
# - name: build-ramips-mt7620 # - name: build-ramips-mt7620
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ramips-mt7620 # GLUON_TARGET: ramips-mt7620
# #
# - name: build-ramips-mt7621 # - name: build-ramips-mt7621
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ramips-mt7621 # GLUON_TARGET: ramips-mt7621
# #
# - name: build-ramips-mt76x8 # - name: build-ramips-mt76x8
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ramips-mt76x8 # GLUON_TARGET: ramips-mt76x8
# #
# - name: build-ramips-rt305x # - name: build-ramips-rt305x
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: ramips-rt305x # GLUON_TARGET: ramips-rt305x
# #
# - name: lantiq-xway # - name: lantiq-xway
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: lantiq-xway # GLUON_TARGET: lantiq-xway
# #
# - name: lantiq-xrx200 # - name: lantiq-xrx200
# <<: *gluon # <<: *gluon
# environment: # environment:
# GLUON_TARGET: lantiq-xrx200 # GLUON_TARGET: lantiq-xrx200
# #
# - name: make manifest # - name: make manifest
# commands: # commands:
# - cd gluon # - cd gluon
# - make manifest GLUON_BRANCH=stable GLUON_OUTPUTDIR=output/stable GLUON_RELEASE=$input_version-stable # - make manifest GLUON_BRANCH=stable GLUON_OUTPUTDIR=output/stable GLUON_RELEASE=$input_version-stable
# - make manifest GLUON_BRANCH=beta GLUON_OUTPUTDIR=output/beta GLUON_RELEASE=$input_version-beta # - make manifest GLUON_BRANCH=beta GLUON_OUTPUTDIR=output/beta GLUON_RELEASE=$input_version-beta
# - make manifest GLUON_BRANCH=experimental GLUON_OUTPUTDIR=output/experimental GLUON_RELEASE=$input_version-exp # - make manifest GLUON_BRANCH=experimental GLUON_OUTPUTDIR=output/experimental GLUON_RELEASE=$input_version-exp
# #
# - name: backup-old-firmware # - name: backup-old-firmware
# <<: *gluon # <<: *gluon
# image: appleboy/drone-ssh # image: appleboy/drone-ssh
# settings: # settings:
# host: 46.4.138.183 # host: 46.4.138.183
# username: fwupload # username: fwupload
# key: # key:
# from_secret: ssh-update # from_secret: ssh-update
# port: 22 # port: 22
# command_timeout: 120m # command_timeout: 120m
# script: # script:
# #- ./rsync-backup-multi.sh # #- ./rsync-backup-multi.sh
# - rm -rf /srv/fwuploads/troisdorf/multi/* # - rm -rf /srv/fwuploads/troisdorf/multi/*
# - mkdir /srv/fwuploads/troisdorf/multi/stable # - mkdir /srv/fwuploads/troisdorf/multi/stable
# - mkdir /srv/fwuploads/troisdorf/multi/beta # - mkdir /srv/fwuploads/troisdorf/multi/beta
# - mkdir /srv/fwuploads/troisdorf/multi/experimental # - mkdir /srv/fwuploads/troisdorf/multi/experimental
# when: # when:
# branch: master # branch: master
# #
# - name: upload stable # - name: upload stable
# <<: *upload # <<: *upload
# settings: # settings:
# target: /srv/fwuploads/troisdorf/multi/stable # target: /srv/fwuploads/troisdorf/multi/stable
# source: /drone/src/gluon/output/stable/images/* # source: /drone/src/gluon/output/stable/images/*
# #
# - name: upload beta # - name: upload beta
# <<: *upload # <<: *upload
# settings: # settings:
# target: /srv/fwuploads/troisdorf/multi/beta # target: /srv/fwuploads/troisdorf/multi/beta
# source: /drone/src/gluon/output/beta/images/* # source: /drone/src/gluon/output/beta/images/*
# #
- name: upload experimental &name # - name: upload experimental
<<: *upload # <<: *upload
settings: # settings:
target: /srv/fwuploads/troisdorf/multi/experimental # target: /srv/fwuploads/troisdorf/multi/experimental
source: /drone/src/gluon/output/experimental/images/* # source: /drone/src/gluon/output/experimental/images/*
# #
# - name: slack # - name: slack
# image: plugins/slack # image: plugins/slack
# settings: # settings:
# webhook: # webhook:
# from_secret: slack_webhook # from_secret: slack_webhook
# channel: fftdf_firmware # channel: fftdf_firmware