2021-07-24 13:53:02 +00:00
name : 'Build'
2021-12-24 19:35:25 +00:00
on :
2021-08-17 14:45:23 +00:00
push :
branches :
- dev
- "release*"
tags :
2021-08-19 09:56:42 +00:00
- '*'
2021-08-17 14:45:23 +00:00
pull_request :
2021-07-24 13:53:02 +00:00
env :
2022-03-23 17:59:20 +00:00
TARGETS : f7
2021-10-12 15:30:55 +00:00
DEFAULT_TARGET : f7
2021-07-24 13:53:02 +00:00
jobs :
2021-12-24 19:35:25 +00:00
main :
2022-08-02 14:05:31 +00:00
runs-on : [ self-hosted,FlipperZeroShell]
2021-07-24 13:53:02 +00:00
steps :
- name : 'Decontaminate previous build leftovers'
run : |
2021-07-25 11:46:34 +00:00
if [ -d .git ]
then
git submodule status \
|| git checkout `git rev-list --max-parents=0 HEAD | tail -n 1`
fi
2021-07-24 13:53:02 +00:00
- name : 'Checkout code'
uses : actions/checkout@v2
with :
fetch-depth : 0
2021-08-26 17:59:23 +00:00
ref : ${{ github.event.pull_request.head.sha }}
2021-07-24 13:53:02 +00:00
- name : 'Make artifacts directory'
run : |
test -d artifacts && rm -rf artifacts || true
mkdir artifacts
2022-04-13 20:50:25 +00:00
2021-08-20 17:31:07 +00:00
- name : 'Generate suffix and folder name'
2021-08-26 17:59:23 +00:00
id : names
2021-08-20 17:31:07 +00:00
run : |
REF=${{ github.ref }}
if [[ ${{ github.event_name }} == 'pull_request' ]]; then
REF=${{ github.head_ref }}
fi
2021-10-17 09:41:04 +00:00
BRANCH_OR_TAG=${REF#refs/*/}
2021-08-26 17:59:23 +00:00
SHA=$(git rev-parse --short HEAD)
2022-04-13 20:50:25 +00:00
2021-08-20 17:31:07 +00:00
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
2021-10-17 09:41:04 +00:00
SUFFIX=${BRANCH_OR_TAG//\//_}
2021-08-20 17:31:07 +00:00
else
2021-10-17 09:41:04 +00:00
SUFFIX=${BRANCH_OR_TAG//\//_}-$(date +'%d%m%Y')-${SHA}
2021-08-20 17:31:07 +00:00
fi
2022-04-13 20:50:25 +00:00
2021-08-26 17:59:23 +00:00
echo "WORKFLOW_BRANCH_OR_TAG=${BRANCH_OR_TAG}" >> $GITHUB_ENV
2021-11-18 08:46:47 +00:00
echo "DIST_SUFFIX=${SUFFIX}" >> $GITHUB_ENV
2021-08-26 17:59:23 +00:00
echo "::set-output name=artifacts-path::${BRANCH_OR_TAG}"
echo "::set-output name=suffix::${SUFFIX}"
echo "::set-output name=short-hash::${SHA}"
2021-09-10 12:05:09 +00:00
echo "::set-output name=default-target::${DEFAULT_TARGET}"
2021-07-24 13:53:02 +00:00
2021-12-01 10:21:26 +00:00
- name : 'Bundle scripts'
if : ${{ !github.event.pull_request.head.repo.fork }}
run : |
tar czpf artifacts/flipper-z-any-scripts-${{steps.names.outputs.suffix}}.tgz scripts
2022-08-02 14:05:31 +00:00
- name : 'Build the firmware'
run : |
set -e
for TARGET in ${TARGETS}
do
FBT_TOOLCHAIN_PATH=/opt ./fbt TARGET_HW=`echo ${TARGET} | sed 's/f//'` updater_package ${{ startsWith(github.ref, 'refs/tags') && 'DEBUG=0 COMPACT=1' || '' }}
done
2021-10-26 15:33:38 +00:00
2021-07-24 13:53:02 +00:00
- name : 'Move upload files'
2021-08-17 16:46:12 +00:00
if : ${{ !github.event.pull_request.head.repo.fork }}
2022-08-02 14:05:31 +00:00
run : |
set -e
for TARGET in ${TARGETS}
do
mv dist/${TARGET}-*/* artifacts/
done
2021-07-24 13:53:02 +00:00
2022-04-13 20:50:25 +00:00
- name : 'Bundle self-update package'
if : ${{ !github.event.pull_request.head.repo.fork }}
2022-08-02 14:05:31 +00:00
run : |
set -e
for UPDATEBUNDLE in artifacts/*/
do
BUNDLE_NAME=`echo $UPDATEBUNDLE | cut -d'/' -f2`
echo Packaging ${BUNDLE_NAME}
tar czpf artifacts/flipper-z-${BUNDLE_NAME}.tgz -C artifacts ${BUNDLE_NAME}
rm -rf artifacts/${BUNDLE_NAME}
done
2022-04-13 20:50:25 +00:00
2022-08-02 13:29:16 +00:00
- name : "Check for uncommited changes"
run : |
git diff --exit-code
2021-12-01 10:21:26 +00:00
- name : 'Bundle resources'
if : ${{ !github.event.pull_request.head.repo.fork }}
run : |
tar czpf artifacts/flipper-z-any-resources-${{steps.names.outputs.suffix}}.tgz -C assets resources
2021-08-17 09:41:08 +00:00
- name : 'Bundle core2 firmware'
2021-08-17 16:46:12 +00:00
if : ${{ !github.event.pull_request.head.repo.fork }}
2022-08-02 14:05:31 +00:00
run : |
FBT_TOOLCHAIN_PATH=/opt ./fbt copro_dist
tar czpf artifacts/flipper-z-any-core2_firmware-${{steps.names.outputs.suffix}}.tgz -C assets core2_firmware
2021-08-17 09:41:08 +00:00
2022-08-23 11:29:26 +00:00
- name : 'Copy .map file'
run : |
cp build/f7-firmware-D/firmware.elf.map artifacts/flipper-z-f7-firmware-${{steps.names.outputs.suffix}}.elf.map
2021-07-24 13:53:02 +00:00
- name : 'Upload artifacts to update server'
2021-08-17 16:46:12 +00:00
if : ${{ !github.event.pull_request.head.repo.fork }}
2022-08-02 14:05:31 +00:00
run : |
echo "${{ secrets.RSYNC_DEPLOY_KEY }}" > deploy_key;
chmod 600 ./deploy_key;
2022-08-03 16:43:14 +00:00
rsync -avzP --delete --mkpath \
2022-08-02 14:05:31 +00:00
-e 'ssh -p ${{ secrets.RSYNC_DEPLOY_PORT }} -i ./deploy_key' \
artifacts/ ${{ secrets.RSYNC_DEPLOY_USER }}@${{ secrets.RSYNC_DEPLOY_HOST }}:"${{ secrets.RSYNC_DEPLOY_BASE_PATH }}${{steps.names.outputs.artifacts-path}}/";
rm ./deploy_key;
2021-07-24 13:53:02 +00:00
- name : 'Trigger update server reindex'
2021-08-17 16:46:12 +00:00
if : ${{ !github.event.pull_request.head.repo.fork }}
2022-08-02 14:05:31 +00:00
run : curl -X POST -F 'key=${{ secrets.REINDEX_KEY }}' ${{ secrets.REINDEX_URL }}
2021-07-24 13:53:02 +00:00
2021-09-10 12:05:09 +00:00
- name : 'Find Previous Comment'
2021-08-26 17:59:23 +00:00
if : ${{ !github.event.pull_request.head.repo.fork && github.event.pull_request }}
uses : peter-evans/find-comment@v1
id : fc
with :
issue-number : ${{ github.event.pull_request.number }}
comment-author : 'github-actions[bot]'
2022-07-03 15:01:24 +00:00
body-includes : 'Compiled firmware for commit'
2021-08-26 17:59:23 +00:00
2021-09-10 12:05:09 +00:00
- name : 'Create or update comment'
2021-08-26 17:59:23 +00:00
if : ${{ !github.event.pull_request.head.repo.fork && github.event.pull_request}}
uses : peter-evans/create-or-update-comment@v1
with :
comment-id : ${{ steps.fc.outputs.comment-id }}
issue-number : ${{ github.event.pull_request.number }}
body : |
2022-07-03 15:01:24 +00:00
**Compiled firmware for commit `${{steps.names.outputs.short-hash}}`:**
- [ 📦 Update package](https://update.flipperzero.one/builds/firmware/${{steps.names.outputs.artifacts-path}}/flipper-z-${{steps.names.outputs.default-target}}-update-${{steps.names.outputs.suffix}}.tgz)
- [ 📥 DFU file](https://update.flipperzero.one/builds/firmware/${{steps.names.outputs.artifacts-path}}/flipper-z-${{steps.names.outputs.default-target}}-full-${{steps.names.outputs.suffix}}.dfu)
- [ ☁️ Web updater](https://my.flipp.dev/?url=https://update.flipperzero.one/builds/firmware/${{steps.names.outputs.artifacts-path}}/flipper-z-${{steps.names.outputs.default-target}}-update-${{steps.names.outputs.suffix}}.tgz&channel=${{steps.names.outputs.artifacts-path}}&version=${{steps.names.outputs.short-hash}})
2021-08-26 17:59:23 +00:00
edit-mode : replace
2022-01-02 21:39:56 +00:00
2021-12-24 19:35:25 +00:00
compact :
if : ${{ !startsWith(github.ref, 'refs/tags') }}
2022-08-02 14:05:31 +00:00
runs-on : [ self-hosted,FlipperZeroShell]
2021-12-24 19:35:25 +00:00
steps :
- name : 'Decontaminate previous build leftovers'
run : |
if [ -d .git ]
then
git submodule status \
|| git checkout `git rev-list --max-parents=0 HEAD | tail -n 1`
fi
- name : 'Checkout code'
uses : actions/checkout@v2
with :
fetch-depth : 0
submodules : true
ref : ${{ github.event.pull_request.head.sha }}
- name : 'Generate suffix and folder name'
id : names
run : |
REF=${{ github.ref }}
if [[ ${{ github.event_name }} == 'pull_request' ]]; then
REF=${{ github.head_ref }}
fi
BRANCH_OR_TAG=${REF#refs/*/}
SHA=$(git rev-parse --short HEAD)
2022-04-13 20:50:25 +00:00
2021-12-24 19:35:25 +00:00
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
SUFFIX=${BRANCH_OR_TAG//\//_}
else
SUFFIX=${BRANCH_OR_TAG//\//_}-$(date +'%d%m%Y')-${SHA}
fi
2022-04-13 20:50:25 +00:00
2021-12-24 19:35:25 +00:00
echo "WORKFLOW_BRANCH_OR_TAG=${BRANCH_OR_TAG}" >> $GITHUB_ENV
echo "DIST_SUFFIX=${SUFFIX}" >> $GITHUB_ENV
2022-08-02 14:05:31 +00:00
- name : 'Build the firmware'
run : |
set -e
for TARGET in ${TARGETS}
do
FBT_TOOLCHAIN_PATH=/opt ./fbt TARGET_HW=`echo ${TARGET} | sed 's/f//'` updater_package DEBUG=0 COMPACT=1
done