Skip to content

Commit d317bc5

Browse files
committed
添加BSP CI看护
1 parent da6b9fc commit d317bc5

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/ALL_BSP_COMPILE.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,16 @@
466466
"RTT_BSP": "xuantie",
467467
"RTT_TOOL_CHAIN": "sourcery-Xuantie-900-gcc-elf-newlib",
468468
"SUB_RTT_BSP": [
469-
"xuantie/smartl/e906"
469+
"xuantie/smartl/e902",
470+
"xuantie/smartl/e906",
471+
"xuantie/smartl/e907",
472+
"xuantie/xiaohui/c906",
473+
"xuantie/xiaohui/c907",
474+
"xuantie/xiaohui/c908",
475+
"xuantie/xiaohui/c910",
476+
"xuantie/xiaohui/r908",
477+
"xuantie/xiaohui/r910",
478+
"xuantie/xiaohui/r920"
470479
]
471480
}
472481
]

bsp/xuantie/smartl/e902/SConstruct

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import os
22
import sys
33
import rtconfig
44
from SCons.Script import *
5-
from termcolor import colored
65

76
if os.getenv('RTT_ROOT'):
87
RTT_ROOT = os.getenv('RTT_ROOT')
@@ -20,10 +19,6 @@ except:
2019

2120
TARGET = 'rtthread.' + rtconfig.TARGET_EXT
2221

23-
print(colored('RT-Thread root directory: %s' % RTT_ROOT, 'green'))
24-
print(colored('Building path: %s' % os.path.abspath('.'), 'green'))
25-
print(colored('Building target: %s' % TARGET, 'green'))
26-
2722
DefaultEnvironment(tools=[])
2823
env = Environment(tools = ['mingw'],
2924
AS = rtconfig.AS, ASFLAGS = rtconfig.AFLAGS,
@@ -37,14 +32,12 @@ Export('RTT_ROOT')
3732
Export('rtconfig')
3833

3934
SDK_ROOT = os.path.abspath('./')
40-
print(colored('SDK_ROOT: %s' % SDK_ROOT, 'green'))
4135

4236
if os.path.exists(SDK_ROOT + '/libraries'):
4337
libraries_path_prefix = SDK_ROOT + '../libraries'
4438
else:
4539
libraries_path_prefix = os.path.dirname(SDK_ROOT) + '/../libraries'
4640

47-
print(colored('libraries_path_prefix: %s' % libraries_path_prefix, 'green'))
4841
SDK_LIB = libraries_path_prefix
4942
Export('SDK_LIB')
5043

0 commit comments

Comments
 (0)