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:
|
2023-02-08 10:38:09 +00:00
|
|
|
TARGETS: f7
|
2021-10-12 15:30:55 +00:00
|
|
|
DEFAULT_TARGET: f7
|
2022-12-19 13:07:23 +00:00
|
|
|
FBT_TOOLCHAIN_PATH: /runner/_work
|
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'
|
2022-12-10 13:10:51 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-07-24 13:53:02 +00:00
|
|
|
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
|
|
|
|
2022-09-03 07:09:03 +00:00
|
|
|
- name: 'Get commit details'
|
2022-12-10 13:10:51 +00:00
|
|
|
id: names
|
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-12-26 20:22:22 +00:00
|
|
|
echo random_hash=$(openssl rand -base64 40 | shasum -a 256 | awk '{print $1}') >> $GITHUB_OUTPUT
|
|
|
|
echo "event_type=$TYPE" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- name: 'Make artifacts directory'
|
|
|
|
run: |
|
|
|
|
rm -rf artifacts
|
|
|
|
rm -rf map_analyser_files
|
|
|
|
mkdir artifacts
|
|
|
|
mkdir map_analyser_files
|
2022-04-13 20:50:25 +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
|
2023-02-07 16:33:05 +00:00
|
|
|
TARGET="$(echo "${TARGET}" | sed 's/f//')"; \
|
|
|
|
./fbt TARGET_HW=$TARGET 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-12-26 20:22:22 +00:00
|
|
|
- name: 'Copy map analyser files'
|
2022-12-27 07:35:57 +00:00
|
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
2022-08-23 11:29:26 +00:00
|
|
|
run: |
|
2022-12-26 20:22:22 +00:00
|
|
|
cp build/f7-firmware-*/firmware.elf.map map_analyser_files/firmware.elf.map
|
|
|
|
cp build/f7-firmware-*/firmware.elf map_analyser_files/firmware.elf
|
|
|
|
cp ${{ github.event_path }} map_analyser_files/event.json
|
|
|
|
|
|
|
|
- name: 'Upload map analyser files to storage'
|
2022-12-27 07:35:57 +00:00
|
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
2022-12-26 20:22:22 +00:00
|
|
|
uses: keithweaver/aws-s3-github-action@v1.0.0
|
|
|
|
with:
|
|
|
|
source: map_analyser_files/
|
|
|
|
destination: "s3://${{ secrets.MAP_REPORT_AWS_BUCKET }}/${{steps.names.outputs.random_hash}}"
|
|
|
|
aws_access_key_id: "${{ secrets.MAP_REPORT_AWS_ACCESS_KEY }}"
|
|
|
|
aws_secret_access_key: "${{ secrets.MAP_REPORT_AWS_SECRET_KEY }}"
|
|
|
|
aws_region: "${{ secrets.MAP_REPORT_AWS_REGION }}"
|
|
|
|
flags: --recursive
|
|
|
|
|
|
|
|
- name: 'Trigger map file reporter'
|
2022-12-27 07:35:57 +00:00
|
|
|
if: ${{ !github.event.pull_request.head.repo.fork }}
|
2022-12-26 20:22:22 +00:00
|
|
|
uses: peter-evans/repository-dispatch@v2
|
|
|
|
with:
|
|
|
|
repository: flipperdevices/flipper-map-reporter
|
|
|
|
token: ${{ secrets.REPOSITORY_DISPATCH_TOKEN }}
|
|
|
|
event-type: map-file-analyse
|
|
|
|
client-payload: '{"random_hash": "${{steps.names.outputs.random_hash}}", "event_type": "${{steps.names.outputs.event_type}}"}'
|
|
|
|
|
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'
|
2022-12-10 13:10:51 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-12-24 19:35:25 +00:00
|
|
|
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
|
2023-02-07 16:33:05 +00:00
|
|
|
TARGET="$(echo "${TARGET}" | sed 's/f//')"; \
|
2023-02-08 18:16:05 +00:00
|
|
|
./fbt TARGET_HW=$TARGET DEBUG=0 COMPACT=1 fap_dist updater_package
|
2022-08-02 14:05:31 +00:00
|
|
|
done
|