Skip to content

Commit 5162292

Browse files
committed
feat: ci script associated with auto_utest.
1 parent ab1f438 commit 5162292

File tree

14 files changed

+312
-1
lines changed

14 files changed

+312
-1
lines changed

.github/utest/cpp11/cpp11.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CONFIG_UTEST_CPP11_THREAD_TC=y
2+
# dependencies
3+
CONFIG_RT_USING_CI_ACTION=y
4+
CONFIG_RT_USING_CPLUSPLUS=y
5+
CONFIG_RT_USING_CPLUSPLUS11=y

.github/utest/default.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CONFIG_RT_USING_CI_ACTION=y

.github/utest/kernel/atomic.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CONFIG_UTEST_ATOMIC_TC=y
2+
# dependencies
3+
CONFIG_RT_USING_CI_ACTION=y
4+
CONFIG_RT_USING_TIMER_SOFT=y
5+
CONFIG_RT_USING_THREAD=y
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CONFIG_UTEST_ATOMIC_TC=y
2+
# dependencies
3+
CONFIG_RT_USING_CI_ACTION=y
4+
CONFIG_RT_USING_TIMER_SOFT=y
5+
CONFIG_RT_USING_THREAD=y
6+
CONFIG_RT_USING_STDC_ATOMIC=y

.github/utest/kernel/device.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CONFIG_UTEST_DEVICE_TC=y
2+
# dependencies
3+
CONFIG_RT_USING_CI_ACTION=y
4+
CONFIG_RT_USING_TIMER_SOFT=y
5+
CONFIG_RT_USING_THREAD=y

.github/utest/kernel/ipc.cfg

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
CONFIG_UTEST_SEMAPHORE_TC=y
2+
CONFIG_UTEST_EVENT_TC=y
3+
CONFIG_UTEST_MESSAGEQUEUE_TC=y
4+
CONFIG_UTEST_SIGNAL_TC=y
5+
CONFIG_UTEST_MUTEX_TC=y
6+
CONFIG_UTEST_MAILBOX_TC=y
7+
CONFIG_UTEST_WORKQUEUE_TC=y
8+
# dependencies
9+
CONFIG_RT_USING_CI_ACTION=y
10+
CONFIG_RT_USING_SEMAPHORE=y
11+
CONFIG_RT_USING_EVENT=y
12+
CONFIG_RT_USING_MESSAGEQUEUE=y
13+
CONFIG_RT_USING_SIGNALS=y
14+
CONFIG_RT_USING_MUTEX=y
15+
CONFIG_RT_USING_MAILBOX=y

.github/utest/kernel/irq.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CONFIG_UTEST_IRQ_TC=y
2+
CONFIG_RT_HOOK_USING_FUNC_PTR=y
3+
# dependencies
4+
CONFIG_RT_USING_CI_ACTION=y

.github/utest/kernel/mem.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CONFIG_UTEST_MEMHEAP_TC=y
2+
3+
# dependencies
4+
CONFIG_RT_USING_CI_ACTION=y
5+
CONFIG_RT_USING_MEMHEAP=y

.github/utest/kernel/thread.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CONFIG_UTEST_THREAD_TC=y
2+
# dependencies
3+
CONFIG_RT_USING_CI_ACTION=y
4+
CONFIG_RT_USING_TIMER_SOFT=y
5+
CONFIG_RT_USING_THREAD=y

.github/utest/kernel/timer.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CONFIG_UTEST_TIMER_TC=y
2+
3+
# dependencies
4+
CONFIG_RT_USING_CI_ACTION=y
5+
CONFIG_RT_USING_TIMER_SOFT=y

0 commit comments

Comments
 (0)