Skip to content

Commit 84be91e

Browse files
committed
modified: .github/ALL_BSP_COMPILE.json
modified: .github/workflows/bsp_buildings.yml
1 parent 304d765 commit 84be91e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/ALL_BSP_COMPILE.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
//
111
{
212
"legs": [
313
{

.github/workflows/bsp_buildings.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ jobs:
5353
id: read-config
5454
run: |
5555
#读取ALL_BSP_COMPILE.json文件
56-
raw_matrix_base64=$(base64 -w 0 .github/ALL_BSP_COMPILE.json)
56+
original_matrix=${cat .github/ALL_BSP_COMPILE.json |egrep -v '^//'}
57+
raw_matrix_base64=$(base64 -w 0 $original_matrix)
5758
echo "raw_matrix=$raw_matrix_base64" >> $GITHUB_OUTPUT
5859
- name: Get changed files
5960
id: changed_files

0 commit comments

Comments
 (0)