-
Notifications
You must be signed in to change notification settings - Fork 30
158 lines (137 loc) · 6.08 KB
/
build.yml
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
#
# Copyright (c) 2022, The OpenThread Authors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
name: Build
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'openthread/ot-efr32' && github.run_id) || github.ref }}
cancel-in-progress: true
jobs:
docker:
name: Docker
uses: ./.github/workflows/docker.yml
arm-gcc:
name: Arm GNU Toolchain ${{ matrix.gcc_ver }}
runs-on: ubuntu-22.04
needs: [docker]
continue-on-error: true
permissions:
contents: read
env:
container_name: ot-efr32-dev
TOOLCHAIN_DIR: .toolchain
strategy:
fail-fast: false
matrix:
include:
- gcc_ver: 12.2.Rel1
gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu/12.2.rel1/binrel/arm-gnu-toolchain-12.2.rel1-x86_64-arm-none-eabi.tar.xz
gcc_extract_dir: arm-gnu-toolchain-12.2.rel1-x86_64-arm-none-eabi
- gcc_ver: 12.3.Rel1
gcc_download_url: https://developer.arm.com/-/media/Files/downloads/gnu/12.3.rel1/binrel/arm-gnu-toolchain-12.3.rel1-x86_64-arm-none-eabi.tar.xz
gcc_extract_dir: arm-gnu-toolchain-12.3.rel1-x86_64-arm-none-eabi
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ matrix.gcc_ver }}
verbose: 2
- name: Restore ARM Toolchain
uses: actions/cache@v4
id: cache-arm-toolchain
with:
path: ${{ env.TOOLCHAIN_DIR }}/${{ matrix.gcc_extract_dir }}
key: ${{ matrix.gcc_extract_dir }}
- name: Bootstrap ARM Toolchain
run: script/bootstrap arm_toolchain ${{ matrix.gcc_download_url }} ${{ matrix.gcc_extract_dir }} ${{ env.TOOLCHAIN_DIR }}
- name: Download Docker image
uses: actions/download-artifact@v4
with:
name: ${{ needs.docker.outputs.artifact_name }}
- name: Load docker image
run: docker load -i ${{ needs.docker.outputs.image_name }}.tar
- name: Start ot-efr32-dev container
run: |
docker run \
--rm -it -d \
--user $(id -u) \
--name ${{ env.container_name }} \
--env CCACHE_DIR=/ot-efr32/.ccache \
-v $PWD:/ot-efr32 -w /ot-efr32\
${{ needs.docker.outputs.image_name }}
- name: Append LFS include config to simplicity_sdk .lfsconfig
run: |
git -C third_party/silabs/simplicity_sdk checkout -- .lfsconfig
echo 'fetchinclude = "platform/emdrv/nvm3/lib/libnvm3_*_gcc.a,platform/radio/rail_lib/autogen/librail_release/librail_config_mgm*_gcc.a,platform/radio/rail_lib/autogen/librail_release/*efr32xg*_gcc_release.a"' >> third_party/silabs/simplicity_sdk/.lfsconfig
- name: Create LFS file hash list
run: git -C third_party/silabs/simplicity_sdk lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore simplicity_sdk LFS cache
uses: actions/cache@v4
id: lfs-cache-simplicity_sdk
with:
path: .git/modules/third_party/silabs/simplicity_sdk/lfs
key: lfs-${{ hashFiles('.lfs-assets-id') }}
- name: Git LFS Pull
run: git -C third_party/silabs/simplicity_sdk lfs pull
- name: Build
run: docker exec ${{ env.container_name }} bash -c 'PATH=${{ env.TOOLCHAIN_DIR }}/${{ matrix.gcc_extract_dir }}/bin:$PATH script/test'
- name: Gather SLC generated files
if: failure()
run: |
rm -rf artifact && mkdir artifact
for b in build/*/slc; do
board=$(basename $(dirname "${b}"))
echo "Artifacting '${board}'"
mkdir -p "artifact/${board}"
mv "build/${board}/slc" "artifact/${board}"
done
- uses: actions/upload-artifact@v4
if: failure()
with:
name: build-${{ matrix.gcc_ver }}
path: artifact
dockerhub-publish:
name: DockerHub Publish
uses: ./.github/workflows/dockerhub-publish.yml
needs: [docker, arm-gcc]
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'SiliconLabs'
with:
artifact_name: ${{ needs.docker.outputs.artifact_name }}
image_name: ${{ needs.docker.outputs.image_name }}
new_image_name: siliconlabsinc/ot-efr32-dev:latest
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_PERSONAL_ACCESS_TOKEN }}