Skip to content

Commit f458802

Browse files
koen-vdmkvandenm
and
kvandenm
authored
fix ci (#2)
* disble SUOTA build configurations for some projects * fix process build script --------- Co-authored-by: kvandenm <koen.van-den-maagdenberg.xn@renesas.com>
1 parent 56e5027 commit f458802

File tree

4 files changed

+4
-879
lines changed

4 files changed

+4
-879
lines changed

.github/scripts/process_build.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ def findProjectFiles():
1111

1212
matches = []
1313
for root, dirnames, filenames in os.walk("."):
14+
if root == ".":
15+
continue
1416
for filename in fnmatch.filter(filenames, ".project"):
1517
matches.append(os.path.dirname(os.path.join(root, filename))[2:])
1618

@@ -30,8 +32,8 @@ def findProjectFiles():
3032

3133
outputDict = {"examples": [], "groups": []}
3234
for proj in projectFolderList:
33-
34-
binPath = glob.glob( os.path.join(proj,'*-Debug_QSPI','*.bin'))
35+
36+
binPath = glob.glob( os.path.join(proj,'*-Debug_eFLASH','*.bin'))
3537

3638
if len(binPath) != 1:
3739
raise FileExistsError(proj)

0 commit comments

Comments
 (0)