2022-05-27 19:31:48 +00:00
kind : pipeline
type : docker
2022-11-23 14:56:51 +00:00
name : "Release firmware"
2022-05-27 19:31:48 +00:00
steps :
2022-07-29 18:18:06 +00:00
- name : "Update submodules"
image : alpine/git
commands :
- git submodule sync
- git -c protocol.version=2 submodule update --init --force --recursive
- git submodule foreach git config --local gc.auto 0
- git log -1 --format='%H'
2022-11-23 14:56:51 +00:00
- name : "Build firmware"
2022-07-29 18:18:06 +00:00
image : hfdj/fztools
pull : never
commands :
- export DIST_SUFFIX=${DRONE_TAG}
2022-11-23 14:56:51 +00:00
- export WORKFLOW_BRANCH_OR_TAG=release-cfw
2022-08-02 21:32:55 +00:00
- ./fbt COMPACT=1 DEBUG=0 updater_package
2022-07-29 18:18:06 +00:00
- mkdir artifacts-default
- mv dist/f7-C/* artifacts-default/
- ls -laS artifacts-default
- ls -laS artifacts-default/f7-update-${DRONE_TAG}
2022-08-01 20:20:04 +00:00
- sed -i 's/(version)/'${DRONE_TAG}'/g' CHANGELOG.md
2022-11-23 14:56:51 +00:00
- echo '# [Install via Web Updater](https://lab.flipper.net/?url=https://unleashedflip.com/fw/${DRONE_TAG}/flipper-z-f7-update-'${DRONE_TAG}'.tgz&channel=release-cfw&version='${DRONE_TAG}')' >> CHANGELOG.md
2022-07-29 18:18:06 +00:00
environment :
FBT_TOOLS_CUSTOM_LINK :
from_secret : fbt_link
2022-11-12 19:24:22 +00:00
- name : "Build no anims FW"
image : hfdj/fztools
pull : never
commands :
- rm -f assets/dolphin/external/manifest.txt
- cp .ci_files/anims_ofw.txt assets/dolphin/external/manifest.txt
2022-11-23 14:56:51 +00:00
- export DIST_SUFFIX=${DRONE_TAG}n
- export WORKFLOW_BRANCH_OR_TAG=no-custom-anims
2022-11-12 19:24:22 +00:00
- ./fbt COMPACT=1 DEBUG=0 updater_package
- mkdir artifacts-ofw-anims
- mv dist/f7-C/* artifacts-ofw-anims/
- ls -laS artifacts-ofw-anims
2022-11-23 14:56:51 +00:00
- ls -laS artifacts-ofw-anims/f7-update-${DRONE_TAG}n
2022-11-12 19:24:22 +00:00
- echo '' >> CHANGELOG.md
2022-11-23 14:56:51 +00:00
- echo '### [Version without custom animations - Install via Web Updater](https://lab.flipper.net/?url=https://unleashedflip.com/fw_no_anim/flipper-z-f7-update-'${DRONE_TAG}'n.tgz&channel=release-cfw&version='${DRONE_TAG}'n)' >> CHANGELOG.md
2022-11-12 19:24:22 +00:00
environment :
FBT_TOOLS_CUSTOM_LINK :
from_secret : fbt_link
2022-07-29 18:18:06 +00:00
- name : "Bundle self-update packages"
image : kramos/alpine-zip
commands :
2022-11-23 14:56:51 +00:00
- cp artifacts-ofw-anims/flipper-z-f7-update-${DRONE_TAG}n.tgz .
2022-08-01 20:56:25 +00:00
- cp artifacts-default/flipper-z-f7-update-${DRONE_TAG}.tgz .
2022-11-23 14:56:51 +00:00
- zip -r artifacts-ofw-anims/flipper-z-f7-update-${DRONE_TAG}n.zip artifacts-ofw-anims/f7-update-${DRONE_TAG}n
2022-07-29 18:18:06 +00:00
- zip -r artifacts-default/flipper-z-f7-update-${DRONE_TAG}.zip artifacts-default/f7-update-${DRONE_TAG}
2022-11-23 14:56:51 +00:00
- tar czpf artifacts-default/flipper-z-any-scripts-${DRONE_TAG}.tgz scripts debug
2022-11-12 19:24:22 +00:00
- rm -rf artifacts-ofw-anims/f7-update-${DRONE_TAG}
2022-07-29 18:18:06 +00:00
- rm -rf artifacts-default/f7-update-${DRONE_TAG}
2022-11-12 19:24:22 +00:00
- ls -laS artifacts-ofw-anims
2022-07-29 18:18:06 +00:00
- ls -laS artifacts-default
2022-11-23 14:56:51 +00:00
- mv artifacts-default/ ${DRONE_TAG}
- ls -laS ${DRONE_TAG}
2022-07-29 18:18:06 +00:00
2022-11-12 19:24:22 +00:00
- name : "Upload default to updates srv"
2022-08-01 20:20:04 +00:00
image : appleboy/drone-scp
settings :
host :
from_secret : dep_host
username :
from_secret : dep_user
password :
from_secret : dep_passwd
port :
from_secret : dep_port
target :
2022-11-23 14:56:51 +00:00
from_secret : dep_target_new
source :
- ${DRONE_TAG}/*.tgz
- ${DRONE_TAG}/*.zip
- ${DRONE_TAG}/*.json
- ${DRONE_TAG}/*.elf
- ${DRONE_TAG}/*.dfu
- ${DRONE_TAG}/*.bin
2022-08-01 20:20:04 +00:00
2022-11-12 19:24:22 +00:00
- name : "Upload no-anims to updates srv"
image : appleboy/drone-scp
settings :
host :
from_secret : dep_host
username :
from_secret : dep_user
password :
from_secret : dep_passwd
port :
from_secret : dep_port
target :
2022-11-23 14:56:51 +00:00
from_secret : dep_target_noanim
source : flipper-z-f7-update-${DRONE_TAG}n.tgz
- name : "Trigger update server reindex"
image : hfdj/fztools
pull : never
environment :
UPD_KEY :
from_secret : git_update_serv_token
UPD_URL :
from_secret : git_update_server_url
commands :
- curl -X POST -F 'key='$UPD_KEY'' $UPD_URL
2022-11-12 19:24:22 +00:00
2022-07-29 18:18:06 +00:00
- name : "Do Github release"
image : ddplugins/github-release
pull : never
settings :
github_url : https://github.com
repo_owner :
from_secret : github_repoowner
api_key :
from_secret : github_apikey
files :
2022-11-23 14:56:51 +00:00
- ${DRONE_TAG}/*.tgz
- ${DRONE_TAG}/*.zip
2022-11-12 19:24:22 +00:00
- artifacts-ofw-anims/*.tgz
2022-07-29 18:18:06 +00:00
title : ${DRONE_TAG}
note : CHANGELOG.md
checksum :
- md5
- sha1
- crc32
- name : "Send files to telegram"
image : appleboy/drone-telegram
settings :
token :
from_secret : tgtoken
to :
from_secret : tgid
format : markdown
message : "New Unleashed firmware released!
Version : {{build.tag}}
2022-10-08 23:27:38 +00:00
[ -Github-](https://github.com/DarkFlippers/unleashed-firmware/releases/tag/${DRONE_TAG})
2022-08-02 21:32:55 +00:00
2022-10-28 23:53:11 +00:00
2022-10-22 20:20:17 +00:00
[ -How to install firmware-](https://github.com/DarkFlippers/unleashed-firmware/blob/dev/documentation/HowToInstall.md)
2022-08-02 21:32:55 +00:00
2022-10-28 23:53:11 +00:00
2022-11-23 14:56:51 +00:00
[ -Version without custom animations - Install via Web Updater-](https://lab.flipper.net/?url=https://unleashedflip.com/fw_no_anim/flipper-z-f7-update-${DRONE_TAG}n.tgz&channel=release-cfw&version=${DRONE_TAG}n)
2022-11-12 22:14:06 +00:00
2022-10-28 23:53:11 +00:00
2022-11-23 14:56:51 +00:00
[ -Install via Web Updater-](https://lab.flipper.net/?url=https://unleashedflip.com/fw/${DRONE_TAG}/flipper-z-f7-update-${DRONE_TAG}.tgz&channel=release-cfw&version=${DRONE_TAG})"
2022-07-29 18:18:06 +00:00
document :
2022-11-23 14:56:51 +00:00
- ${DRONE_TAG}/flipper-z-f7-update-${DRONE_TAG}.tgz
2022-07-29 18:18:06 +00:00
- name : "Send discord notification"
image : appleboy/drone-discord
settings :
webhook_id :
from_secret : ds_wh_id
webhook_token :
from_secret : ds_wh_token
message : "New Unleashed firmware released!
Version : {{build.tag}}
2022-10-08 23:27:38 +00:00
[ [ Github]](https://github.com/DarkFlippers/unleashed-firmware/releases/tag/${DRONE_TAG})
2022-08-02 21:32:55 +00:00
2022-11-12 22:14:06 +00:00
[ -How to install firmware-](https://github.com/DarkFlippers/unleashed-firmware/blob/dev/documentation/HowToInstall.md)
2022-11-23 14:56:51 +00:00
[ -Version without custom animations - Install via Web Updater-](https://lab.flipper.net/?url=https://unleashedflip.com/fw_no_anim/flipper-z-f7-update-${DRONE_TAG}n.tgz&channel=release-cfw&version=${DRONE_TAG}n)
2022-11-12 22:14:06 +00:00
2022-11-23 14:56:51 +00:00
[ -Install via Web Updater-](https://lab.flipper.net/?url=https://unleashedflip.com/fw/${DRONE_TAG}/flipper-z-f7-update-${DRONE_TAG}.tgz&channel=release-cfw&version=${DRONE_TAG})"
2022-07-29 18:18:06 +00:00
2022-05-27 19:31:48 +00:00
trigger :
2022-11-23 14:56:51 +00:00
branch :
- release
2022-05-27 19:31:48 +00:00
event :
2022-07-29 18:18:06 +00:00
- tag
2022-05-27 19:31:48 +00:00
node :
2022-07-29 18:18:06 +00:00
typ : haupt
2022-11-23 14:56:51 +00:00
---
kind : pipeline
type : docker
name : "Dev build"
steps :
- name : "Update submodules"
image : alpine/git
commands :
- git submodule sync
- git -c protocol.version=2 submodule update --init --force --recursive
- git submodule foreach git config --local gc.auto 0
- git log -1 --format='%H'
- name : "Build dev FW"
image : hfdj/fztools
pull : never
commands :
- export DIST_SUFFIX=${DRONE_TAG}
- export WORKFLOW_BRANCH_OR_TAG=dev-cfw
- ./fbt COMPACT=1 DEBUG=0 updater_package
- mkdir artifacts-default
- mv dist/f7-C/* artifacts-default/
- ls -laS artifacts-default
- ls -laS artifacts-default/f7-update-${DRONE_TAG}
environment :
FBT_TOOLS_CUSTOM_LINK :
from_secret : fbt_link
- name : "Bundle self-update packages"
image : kramos/alpine-zip
commands :
- cp artifacts-default/flipper-z-f7-update-${DRONE_TAG}.tgz .
- rm -rf artifacts-default/f7-update-${DRONE_TAG}
- ls -laS artifacts-default
- mv artifacts-default/ dev
- ls -laS dev
- name : "Clean dev folder"
image : appleboy/drone-ssh
settings :
host :
from_secret : dep_host
username :
from_secret : dep_user
password :
from_secret : dep_passwd
port :
from_secret : dep_port
command_timeout : 1m
script :
- cd web/unleashedflip.com/public_html/fw/dev
- ls -laS
- rm -f ./*
- ls -laS
- name : "Upload default to updates srv"
image : appleboy/drone-scp
settings :
host :
from_secret : dep_host
username :
from_secret : dep_user
password :
from_secret : dep_passwd
port :
from_secret : dep_port
target :
from_secret : dep_target_new
source :
- dev/*.tgz
- dev/*.zip
- dev/*.json
- dev/*.elf
- dev/*.dfu
- dev/*.bin
- name : "Trigger update server reindex"
image : hfdj/fztools
pull : never
environment :
UPD_KEY :
from_secret : git_update_serv_token
UPD_URL :
from_secret : git_update_server_url
commands :
- curl -X POST -F 'key='$UPD_KEY'' $UPD_URL
- name : "Send files to telegram"
image : appleboy/drone-telegram
settings :
token :
from_secret : tgtoken
to :
from_secret : tgid_dev
format : markdown
message : "Unleashed firmware dev build successful!
Version : {{build.tag}}
Build : {{build.number}}
SHA : {{commit.sha}}
Commit : {{commit.message}}
[ -Install via Web Updater-](https://lab.flipper.net/?url=https://unleashedflip.com/fw/dev/flipper-z-f7-update-${DRONE_TAG}.tgz&channel=dev-cfw&version=${DRONE_TAG})"
document :
- dev/flipper-z-f7-update-${DRONE_TAG}.tgz
trigger :
branch :
- dev
event :
- push
node :
typ : haupt