Skip to content

Commit 97a300c

Browse files
Fixed tracing build and add tracing build option to CI to prevent future breakage
1 parent f71703c commit 97a300c

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/silabs-builds-mg26.json

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
{
44
"boards": ["BRD4116A", "BRD4117A", "BRD4118A", "BRD2608A"],
55
"arguments": ["--docker"]
6+
},
7+
{
8+
"boards": ["BRD2608A"],
9+
"arguments": ["--docker", "--enable_tracing", "--clean"]
610
}
711
]
812
}

scripts/examples/gn_silabs_example.sh

+4
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,10 @@ else
279279
shift
280280
shift
281281
;;
282+
--enable_tracing)
283+
optArgs+="chip_build_libshell=true matter_enable_tracing_support=true "
284+
shift
285+
;;
282286
*"sl_matter_version_str="*)
283287
optArgs+="$1 "
284288
USE_GIT_SHA_FOR_VERSION=false

src/platform/silabs/tracing/BUILD.gn

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ static_library("SilabsTracing") {
2424
"BackendImpl.h",
2525
"SilabsTracing.cpp",
2626
"SilabsTracing.h",
27-
"SilabsTracingMacros.h",
2827
"SilabsTracingTypes.h",
2928
]
3029

0 commit comments

Comments
 (0)