Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.yml « workflows « .github - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19d4b5bfb00ea02281aee6bcf512d4f66b091ee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
name: 'Build'

on: 
  push:
    branches:
      - dev
      - "release*"
    tags:
  pull_request:

env:
  TARGETS: f6

jobs:
  build:
    runs-on: [self-hosted]
    steps:
      - name: 'Cleanup workspace'
        uses: AutoModality/action-clean@v1

      - 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

      - name: 'Docker cache'
        uses: satackey/action-docker-layer-caching@v0.0.11
        continue-on-error: true
        with:
          key: docker-cache-${{ hashFiles('docker/**') }}-{hash}
          restore-keys: docker-cache-${{ hashFiles('docker/**') }}-

      - name: 'Build docker image'
        uses: ./.github/actions/docker

      - name: 'Make artifacts directory'
        run: |
          test -d artifacts && rm -rf artifacts || true
          mkdir artifacts

      - name: 'Generate tag suffix'
        if: startsWith(github.ref, 'refs/tags/') == true
        run: echo "SUFFIX=$(git describe --tags --abbrev=0)"  >> $GITHUB_ENV

      - name: 'Generate branch suffix'
        if: startsWith(github.ref, 'refs/tags/') != true
        run: echo "SUFFIX=$(git rev-parse --abbrev-ref HEAD)-$(date +'%d%m%Y')-$(git rev-parse --short HEAD)" >> $GITHUB_ENV

      - name: 'Build bootloader in docker'
        uses: ./.github/actions/docker
        with:
          run: |
            for TARGET in ${TARGETS}
            do
              make -j$(nproc) -C bootloader TARGET=${TARGET}
            done

      - name: 'Build firmware in docker'
        uses: ./.github/actions/docker
        with:
          run: |
            for TARGET in ${TARGETS}
            do
              make -j$(nproc) -C firmware TARGET=${TARGET}
            done

      - name: 'Generate full hex file'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        uses: ./.github/actions/docker
        with:
          run: |
            for TARGET in ${TARGETS}
            do
              srec_cat \
                bootloader/.obj/${TARGET}/bootloader.hex -Intel \
                firmware/.obj/${TARGET}/firmware.hex -Intel \
                -o firmware/.obj/${TARGET}/full.hex -Intel
            done

      - name: 'Move upload files'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        uses: ./.github/actions/docker
        with:
          run: |
            for TARGET in ${TARGETS}
            do
              mv bootloader/.obj/${TARGET}/bootloader.dfu \
                artifacts/flipper-z-${TARGET}-bootloader-${SUFFIX}.dfu
              mv bootloader/.obj/${TARGET}/bootloader.bin \
                artifacts/flipper-z-${TARGET}-bootloader-${SUFFIX}.bin
              mv bootloader/.obj/${TARGET}/bootloader.elf \
                artifacts/flipper-z-${TARGET}-bootloader-${SUFFIX}.elf
              mv firmware/.obj/${TARGET}/firmware.dfu \
                artifacts/flipper-z-${TARGET}-firmware-${SUFFIX}.dfu
              mv firmware/.obj/${TARGET}/firmware.bin \
                artifacts/flipper-z-${TARGET}-firmware-${SUFFIX}.bin
              mv firmware/.obj/${TARGET}/firmware.elf \
                artifacts/flipper-z-${TARGET}-firmware-${SUFFIX}.elf
            done

      - name: 'Generate full dfu file'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        uses: ./.github/actions/docker
        with:
          run: |
            for TARGET in ${TARGETS}
            do
              hex2dfu \
                -i firmware/.obj/${TARGET}/full.hex \
                -o artifacts/flipper-z-${TARGET}-full-${SUFFIX}.dfu \
                -l "Flipper Zero $(echo $TARGET | tr a-z A-Z)"
            done

      - name: 'Full flash asssembly: bootloader as base'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        run: |
          for TARGET in ${TARGETS}
          do
            cp \
              artifacts/flipper-z-${TARGET}-bootloader-${SUFFIX}.bin \
              artifacts/flipper-z-${TARGET}-full-${SUFFIX}.bin
          done

      - name: 'Full flash asssembly: bootloader padding'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        run: |
          for TARGET in ${TARGETS}
          do
            truncate -s 32768 artifacts/flipper-z-${TARGET}-full-${SUFFIX}.bin
          done

      - name: 'Full flash asssembly: append firmware'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        run: |
          for TARGET in ${TARGETS}
          do
            cat \
              artifacts/flipper-z-${TARGET}-firmware-${SUFFIX}.bin \
              >> artifacts/flipper-z-${TARGET}-full-${SUFFIX}.bin
          done

      - name: 'Bundle core2 firmware'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        run: |
          test -d core2_firmware && rm -rf core2_firmware || true
          mkdir core2_firmware
          cp \
            lib/STM32CubeWB/package.xml \
            lib/STM32CubeWB/Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/stm32wb5x_FUS_fw.bin \
            lib/STM32CubeWB/Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/stm32wb5x_FUS_fw_for_fus_0_5_3.bin \
            lib/STM32CubeWB/Projects/STM32WB_Copro_Wireless_Binaries/STM32WB5x/stm32wb5x_BLE_Stack_full_fw.bin \
            core2_firmware
          tar czpf artifacts/flipper-z-any-core2_firmware-${SUFFIX}.tgz core2_firmware

      - name: 'Bundle scripts'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        run: |
          tar czpf artifacts/flipper-z-any-scripts-${SUFFIX}.tgz scripts

      - name: 'Bundle resources'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        run: |
          tar czpf artifacts/flipper-z-any-resources-${SUFFIX}.tgz -C assets resources

      - name: 'Upload artifacts to update server'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        uses: burnett01/rsync-deployments@4.1
        with:
          switches: -avzP --delete
          path: artifacts/
          remote_path: "${{ secrets.RSYNC_DEPLOY_BASE_PATH }}${GITHUB_REF##*/}/"
          remote_host: ${{ secrets.RSYNC_DEPLOY_HOST }}
          remote_port: ${{ secrets.RSYNC_DEPLOY_PORT }}
          remote_user: ${{ secrets.RSYNC_DEPLOY_USER }}
          remote_key: ${{ secrets.RSYNC_DEPLOY_KEY }}

      - name: 'Trigger update server reindex'
        if: ${{ !github.event.pull_request.head.repo.fork }}
        uses: wei/curl@master
        with:
          args: -X POST -F 'key=${{ secrets.REINDEX_KEY }}' ${{ secrets.REINDEX_URL }}