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: |
|
2022-09-03 07:09:03 +00:00
|
|
|
if [ -d .git ]; then
|
|
|
|
git submodule status || git checkout "$(git rev-list --max-parents=0 HEAD | tail -n 1)"
|
2021-07-25 11:46:34 +00:00
|
|
|
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: |
|
2022-09-03 07:09:03 +00:00
|
|
|
rm -rf artifacts
|
2021-07-24 13:53:02 +00:00
|
|
|
mkdir artifacts
|
2022-04-13 20:50:25 +00:00
|
|
|
|
2022-09-03 07:09:03 +00:00
|
|
|
- name: 'Get commit details'
|
2021-08-20 17:31:07 +00:00
|
|
|
run: |
|
|
|
|
if [[ ${{ github.event_name }} == 'pull_request' ]]; then
|
2022-09-05 13:40:54 +00:00
|
|
|
TYPE="pull"
|
|
|
|
elif [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
|
|
|
|
TYPE="tag"
|
2021-08-20 17:31:07 +00:00
|
|
|
else
|
2022-09-05 13:40:54 +00:00
|
|
|
TYPE="other"
|
2021-08-20 17:31:07 +00:00
|
|
|
fi
|
2022-09-05 13:40:54 +00:00
|
|
|
python3 scripts/get_env.py "--event_file=${{ github.event_path }}" "--type=$TYPE"
|
2022-04-13 20:50:25 +00:00
|
|
|
|
2022-09-03 07:09:03 +00:00
|
|
|
- name: 'Generate suffixes for comment'
|
|
|
|
id: names
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=branch_name::${BRANCH_NAME}"
|
|
|
|
echo "::set-output name=commit_sha::${COMMIT_SHA}"
|
|
|
|
echo "::set-output name=default_target::${DEFAULT_TARGET}"
|
2021-08-26 17:59:23 +00:00
|
|
|
echo "::set-output name=suffix::${SUFFIX}"
|
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: |
|
2022-10-12 16:12:05 +00:00
|
|
|
tar czpf artifacts/flipper-z-any-scripts-${SUFFIX}.tgz scripts debug
|
2021-12-01 10:21:26 +00:00
|
|
|
|
2022-08-02 14:05:31 +00:00
|
|
|
- name: 'Build the firmware'
|
|
|
|
run: |
|
|
|
|
set -e
|
2022-09-03 07:09:03 +00:00
|
|
|
for TARGET in ${TARGETS}; do
|
2022-10-12 15:31:25 +00:00
|
|
|
FBT_TOOLCHAIN_PATH=/runner/_work ./fbt TARGET_HW="$(echo "${TARGET}" | sed 's/f//')" \
|
2022-10-12 16:12:05 +00:00
|
|
|
copro_dist updater_package ${{ startsWith(github.ref, 'refs/tags') && 'DEBUG=0 COMPACT=1' || '' }}
|
2022-08-02 14:05:31 +00:00
|
|
|
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
|
2022-09-03 07:09:03 +00:00
|
|
|
for TARGET in ${TARGETS}; do
|
2022-08-02 14:05:31 +00:00
|
|
|
mv dist/${TARGET}-*/* artifacts/
|
|
|
|
done
|
2021-07-24 13:53:02 +00:00
|
|
|
|
2022-08-24 15:14:27 +00:00
|
|
|
- name: "Check for uncommitted changes"
|
2022-08-02 13:29:16 +00:00
|
|
|
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: |
|
2022-09-03 07:09:03 +00:00
|
|
|
tar czpf "artifacts/flipper-z-any-resources-${SUFFIX}.tgz" -C assets resources
|
2021-12-01 10:21:26 +00:00
|
|
|
|
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: |
|
2022-10-12 16:12:05 +00:00
|
|
|
cp build/core2_firmware.tgz "artifacts/flipper-z-any-core2_firmware-${SUFFIX}.tgz"
|
2021-08-17 09:41:08 +00:00
|
|
|
|
2022-08-23 11:29:26 +00:00
|
|
|
- name: 'Copy .map file'
|
|
|
|
run: |
|
2022-09-03 07:09:03 +00:00
|
|
|
cp build/f7-firmware-*/firmware.elf.map "artifacts/flipper-z-f7-firmware-${SUFFIX}.elf.map"
|
2022-08-23 11:29:26 +00:00
|
|
|
|
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: |
|
2022-10-12 15:31:25 +00:00
|
|
|
mkdir -p ~/.ssh
|
|
|
|
ssh-keyscan -p ${{ secrets.RSYNC_DEPLOY_PORT }} -H ${{ secrets.RSYNC_DEPLOY_HOST }} > ~/.ssh/known_hosts
|
2022-08-02 14:05:31 +00:00
|
|
|
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' \
|
2022-09-03 07:09:03 +00:00
|
|
|
artifacts/ ${{ secrets.RSYNC_DEPLOY_USER }}@${{ secrets.RSYNC_DEPLOY_HOST }}:"${{ secrets.RSYNC_DEPLOY_BASE_PATH }}${BRANCH_NAME}/";
|
2022-08-02 14:05:31 +00:00
|
|
|
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-09-03 07:09:03 +00:00
|
|
|
**Compiled firmware for commit `${{steps.names.outputs.commit_sha}}`:**
|
|
|
|
- [📦 Update package](https://update.flipperzero.one/builds/firmware/${{steps.names.outputs.branch_name}}/flipper-z-${{steps.names.outputs.default_target}}-update-${{steps.names.outputs.suffix}}.tgz)
|
|
|
|
- [📥 DFU file](https://update.flipperzero.one/builds/firmware/${{steps.names.outputs.branch_name}}/flipper-z-${{steps.names.outputs.default_target}}-full-${{steps.names.outputs.suffix}}.dfu)
|
2022-10-25 22:48:33 +00:00
|
|
|
- [☁️ Web/App updater](https://lab.flipper.net/?url=https://update.flipperzero.one/builds/firmware/${{steps.names.outputs.branch_name}}/flipper-z-${{steps.names.outputs.default_target}}-update-${{steps.names.outputs.suffix}}.tgz&channel=${{steps.names.outputs.branch_name}}&version=${{steps.names.outputs.commit_sha}})
|
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 \
|
2022-09-03 07:09:03 +00:00
|
|
|
|| git checkout "$(git rev-list --max-parents=0 HEAD | tail -n 1)"
|
2021-12-24 19:35:25 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
- name: 'Checkout code'
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
|
2022-09-03 07:09:03 +00:00
|
|
|
- name: 'Get commit details'
|
2021-12-24 19:35:25 +00:00
|
|
|
run: |
|
|
|
|
if [[ ${{ github.event_name }} == 'pull_request' ]]; then
|
2022-09-05 13:40:54 +00:00
|
|
|
TYPE="pull"
|
|
|
|
elif [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
|
|
|
|
TYPE="tag"
|
2021-12-24 19:35:25 +00:00
|
|
|
else
|
2022-09-05 13:40:54 +00:00
|
|
|
TYPE="other"
|
2021-12-24 19:35:25 +00:00
|
|
|
fi
|
2022-09-05 13:40:54 +00:00
|
|
|
python3 scripts/get_env.py "--event_file=${{ github.event_path }}" "--type=$TYPE"
|
2021-12-24 19:35:25 +00:00
|
|
|
|
2022-08-02 14:05:31 +00:00
|
|
|
- name: 'Build the firmware'
|
|
|
|
run: |
|
|
|
|
set -e
|
2022-09-03 07:09:03 +00:00
|
|
|
for TARGET in ${TARGETS}; do
|
2022-10-12 15:31:25 +00:00
|
|
|
FBT_TOOLCHAIN_PATH=/runner/_work ./fbt TARGET_HW="$(echo "${TARGET}" | sed 's/f//')" \
|
2022-09-03 07:09:03 +00:00
|
|
|
updater_package DEBUG=0 COMPACT=1
|
2022-08-02 14:05:31 +00:00
|
|
|
done
|