-
Notifications
You must be signed in to change notification settings - Fork 5.4k
219 lines (205 loc) · 9.45 KB
/
Copy pathmembrowse-report.yml
File metadata and controls
219 lines (205 loc) · 9.45 KB
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
name: MemBrowse Memory Report
on:
pull_request:
paths:
- '.github/membrowse-targets.json'
- '.github/workflows/membrowse-report.yml'
- 'Kconfig'
- 'bsp/**'
- 'components/**'
- 'include/**'
- 'libcpu/**'
- 'src/**'
- 'tools/**'
- '!**/README*'
- '!**/readme*'
- '!bsp/**/docs/**'
push:
branches:
- master
paths:
- '.github/membrowse-targets.json'
- '.github/workflows/membrowse-report.yml'
- 'Kconfig'
- 'bsp/**'
- 'components/**'
- 'include/**'
- 'libcpu/**'
- 'src/**'
- 'tools/**'
- '!**/README*'
- '!**/readme*'
- '!bsp/**/docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'push' && github.sha || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
load-targets:
if: ${{ github.repository == 'RT-Thread/rt-thread' }}
runs-on: ubuntu-22.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
target_count: ${{ steps.set-matrix.outputs.target_count }}
skipped_matrix: ${{ steps.set-matrix.outputs.skipped_matrix }}
skipped_count: ${{ steps.set-matrix.outputs.skipped_count }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Collect changed files
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
git diff --name-only origin/${{ github.base_ref }}...HEAD > changed_files.txt
elif [ "${{ github.event.before }}" != "0000000000000000000000000000000000000000" ]; then
git diff --name-only ${{ github.event.before }} ${{ github.sha }} > changed_files.txt
else
git diff --name-only origin/${{ github.event.repository.default_branch }}...HEAD > changed_files.txt
fi
cat changed_files.txt
- name: Load target matrix
id: set-matrix
run: python3 tools/ci/membrowse_filter_targets.py --targets .github/membrowse-targets.json --changed-files changed_files.txt
analyze:
needs: load-targets
if: ${{ needs.load-targets.outputs.target_count != '0' }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.load-targets.outputs.matrix) }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install env tool and Python build deps
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq python3 python3-pip wget xz-utils build-essential
wget -qO install_ubuntu.sh https://raw.githubusercontent.com/RT-Thread/env/master/install_ubuntu.sh
bash install_ubuntu.sh
- name: Install toolchain
run: |
set -e
case "${{ matrix.toolchain }}" in
arm-none-eabi)
sudo apt-get install -y -qq gcc-arm-none-eabi
echo "TOOLCHAIN_PATH=/usr/bin" >> $GITHUB_ENV
;;
aarch64-none-elf)
wget -q https://github.com/RT-Thread/toolchains-ci/releases/download/v1.6/gcc-arm-10.2-2020.11-x86_64-aarch64-none-elf.tar.xz
sudo tar -xf gcc-arm-10.2-2020.11-x86_64-aarch64-none-elf.tar.xz -C /opt
echo "TOOLCHAIN_PATH=/opt/gcc-arm-10.2-2020.11-x86_64-aarch64-none-elf/bin" >> $GITHUB_ENV
;;
llvm-arm)
wget -q https://github.com/ARM-software/LLVM-embedded-toolchain-for-Arm/releases/download/release-16.0.0/LLVMEmbeddedToolchainForArm-16.0.0-Linux-x86_64.tar.gz
sudo tar zxf LLVMEmbeddedToolchainForArm-16.0.0-Linux-x86_64.tar.gz -C /opt
sudo apt-get install -y -qq libncurses5 libncurses5-dev libncursesw5-dev
echo "TOOLCHAIN_PATH=/opt/LLVMEmbeddedToolchainForArm-16.0.0-Linux-x86_64/bin" >> $GITHUB_ENV
;;
mips-sde-elf)
wget -q https://github.com/RT-Thread/toolchains-ci/releases/download/v1.1/mips-2016.05-7-mips-sde-elf-i686-pc-linux-gnu.tar.bz2
sudo tar xjf mips-2016.05-7-mips-sde-elf-i686-pc-linux-gnu.tar.bz2 -C /opt
echo "TOOLCHAIN_PATH=/opt/mips-2016.05/bin" >> $GITHUB_ENV
;;
i386-unknown-elf)
wget -q https://github.com/zhkag/toolchains/releases/download/i386-unknown/i386-unknown-elf_for_x86_64-pc-linux-gnu_latest.tar.bz2
sudo tar -jxf i386-unknown-elf_for_x86_64-pc-linux-gnu_latest.tar.bz2 -C /opt
echo "TOOLCHAIN_PATH=/opt/i386-unknown-elf_for_x86_64-pc-linux-gnu/bin" >> $GITHUB_ENV
;;
riscv-none-embed)
wget -q https://github.com/RT-Thread/toolchains-ci/releases/download/v1.5/xpack-riscv-none-embed-gcc-8.3.0-2.3-linux-x64.tar.gz
sudo tar zxf xpack-riscv-none-embed-gcc-8.3.0-2.3-linux-x64.tar.gz -C /opt
echo "TOOLCHAIN_PATH=/opt/xpack-riscv-none-embed-gcc-8.3.0-2.3/bin" >> $GITHUB_ENV
;;
riscv32-unknown-elf-multilib)
wget -q https://github.com/hpmicro/riscv-gnu-toolchain/releases/download/2022.05.15/riscv32-unknown-elf-newlib-multilib_2022.05.15_linux.tar.gz
sudo tar zxf riscv32-unknown-elf-newlib-multilib_2022.05.15_linux.tar.gz -C /opt
echo "TOOLCHAIN_PATH=/opt/riscv32-unknown-elf-newlib-multilib/bin" >> $GITHUB_ENV
;;
xuantie-elf-newlib)
wget -q https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource//1751370399722/Xuantie-900-gcc-elf-newlib-x86_64-V3.2.0-20250627.tar.gz
sudo tar -zxf Xuantie-900-gcc-elf-newlib-x86_64-V3.2.0-20250627.tar.gz -C /opt
echo "TOOLCHAIN_PATH=/opt/Xuantie-900-gcc-elf-newlib-x86_64-V3.2.0/bin" >> $GITHUB_ENV
;;
riscv32-esp-elf)
wget -q https://github.com/espressif/crosstool-NG/releases/download/esp-2022r1-RC1/riscv32-esp-elf-gcc11_2_0-esp-2022r1-RC1-linux-amd64.tar.xz
sudo tar xf riscv32-esp-elf-gcc11_2_0-esp-2022r1-RC1-linux-amd64.tar.xz -C /opt
echo "TOOLCHAIN_PATH=/opt/riscv32-esp-elf/bin" >> $GITHUB_ENV
;;
riscv64-linux-musl-k230)
wget -q https://download.rt-thread.org/rt-smart/riscv64/riscv64-linux-musleabi_for_x86_64-pc-linux-gnu_251248.tar.bz2
sudo tar xjf riscv64-linux-musleabi_for_x86_64-pc-linux-gnu_251248.tar.bz2 -C /opt
echo "TOOLCHAIN_PATH=/opt/riscv64-linux-musleabi_for_x86_64-pc-linux-gnu/bin" >> $GITHUB_ENV
;;
gcc-host)
sudo apt-get install -y -qq libsdl2-dev
echo "TOOLCHAIN_PATH=/usr/bin" >> $GITHUB_ENV
;;
*)
echo "Unknown toolchain: ${{ matrix.toolchain }}"; exit 1 ;;
esac
- name: Build
env:
MATRIX_RTT_CC: ${{ matrix.rtt_cc }}
MATRIX_RTT_CC_PREFIX: ${{ matrix.rtt_cc_prefix }}
run: |
source $HOME/.env/env.sh
pip install -r tools/requirements.txt
if [ "${{ matrix.toolchain }}" = "riscv32-esp-elf" ]; then
python -m pip install esptool
fi
export RTT_EXEC_PATH="$TOOLCHAIN_PATH"
export RTT_ROOT="$PWD"
export RTT_CC="${MATRIX_RTT_CC:-gcc}"
[ -n "$MATRIX_RTT_CC_PREFIX" ] && export RTT_CC_PREFIX="$MATRIX_RTT_CC_PREFIX"
cd "${{ matrix.bsp_path }}"
pkgs --update --force-update
scons --pyconfig-silent
scons -j$(nproc)
- name: Run MemBrowse analysis
uses: membrowse/membrowse-action@v1
with:
target_name: ${{ matrix.target_name }}
elf: ${{ matrix.elf }}
ld: ${{ matrix.ld }}
map_file: ${{ matrix.map_file }}
linker_vars: ${{ matrix.linker_vars }}
api_key: ${{ secrets.MEMBROWSE_API_KEY }}
api_url: ${{ vars.MEMBROWSE_API_URL }}
verbose: INFO
# Uncomment to allow CI to pass even when memory budgets are exceeded
# dont_fail_on_alerts: true
# Targets not affected by this push are not rebuilt, but their binaries are
# unchanged. Report them as identical (metadata-only, no build) so every
# target keeps an unbroken per-commit chain instead of a hole on each commit
# that only touched other BSPs. Only runs on push to master; PRs are transient
# and keep the build-affected-only behavior above.
mark-identical:
needs: load-targets
if: ${{ github.event_name == 'push' && needs.load-targets.outputs.skipped_count != '0' }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.load-targets.outputs.skipped_matrix) }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Mark MemBrowse report identical
# Non-fatal: an identical upload needs the parent commit to already have
# a report for this target. Right after adoption some parents predate
# this job and the upload is rejected; it self-heals once the target is
# next built (a full report needs no parent) and every later commit is
# covered. Don't fail the run over that transient window.
continue-on-error: true
uses: membrowse/membrowse-action@v1
with:
target_name: ${{ matrix.target_name }}
identical: true
api_key: ${{ secrets.MEMBROWSE_API_KEY }}
api_url: ${{ vars.MEMBROWSE_API_URL }}
verbose: INFO