We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 304d765 commit 84be91eCopy full SHA for 84be91e
.github/ALL_BSP_COMPILE.json
@@ -1,3 +1,13 @@
1
+//
2
+// Copyright (c) 2025, RT-Thread Development Team
3
4
+// SPDX-License-Identifier: Apache-2.0
5
6
+// Change Logs:
7
+// Date Author Notes
8
+// 2025-03-22 Supperthomas 添加upload 上传编译固件
9
+// 2025-03-31 Hydevcode 将需要编译的bsp列表分离,根据修改的文件对相应的bsp编译
10
11
{
12
"legs": [
13
.github/workflows/bsp_buildings.yml
@@ -53,7 +53,8 @@ jobs:
53
id: read-config
54
run: |
55
#读取ALL_BSP_COMPILE.json文件
56
- raw_matrix_base64=$(base64 -w 0 .github/ALL_BSP_COMPILE.json)
+ original_matrix=${cat .github/ALL_BSP_COMPILE.json |egrep -v '^//'}
57
+ raw_matrix_base64=$(base64 -w 0 $original_matrix)
58
echo "raw_matrix=$raw_matrix_base64" >> $GITHUB_OUTPUT
59
- name: Get changed files
60
id: changed_files
0 commit comments