Skip to content

Commit 9139226

Browse files
johnnynuneziMichka
authored andcommitted
ci: add arm testing and fix namespace join
1 parent 370acf5 commit 9139226

File tree

2 files changed

+62
-7
lines changed

2 files changed

+62
-7
lines changed

.github/workflows/tests.yml

+41
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,32 @@ jobs:
130130
castxml-epic: 1
131131
cppstd: "-std=c++11"
132132

133+
# UBUNTU ARM
134+
- os: ubuntu-22.04-arm
135+
arch: aarch64
136+
compiler: clang++
137+
clang-version: 15
138+
python-version: "3.13"
139+
castxml-epic: 0
140+
cppstd: "-std=c++17"
141+
142+
- os: ubuntu-24.04-arm
143+
arch: aarch64
144+
compiler: clang++
145+
clang-version: 16
146+
python-version: "3.13"
147+
castxml-epic: 0
148+
cppstd: "-std=c++17"
149+
150+
# UBUNTU 24.04 - CASTXML EPIC 1
151+
- os: ubuntu-24.04-arm
152+
arch: aarch64
153+
compiler: clang++
154+
clang-version: 16
155+
python-version: "3.13"
156+
castxml-epic: 1
157+
cppstd: "-std=c++11"
158+
133159
# MACOS
134160
- os: macos-13
135161
compiler: clang++
@@ -181,6 +207,21 @@ jobs:
181207
tar -xzf ~/castxml-ubuntu-22.04-x86_64.tar.gz -C ~/
182208
chmod +x ~/castxml/bin/castxml
183209
210+
# ─── Setup CastXML for Linux aarch64 ──────────────────────────────
211+
- name: Setup CastXML for Linux aarch64 (Ubuntu 24.04)
212+
if: matrix.os == 'ubuntu-24.04-arm' && matrix.arch == 'aarch64'
213+
run: |
214+
wget -q -O ~/castxml-ubuntu-24.04-arm-aarch64.tar.gz https://github.com/CastXML/CastXMLSuperbuild/releases/download/v0.6.11.post2/castxml-ubuntu-24.04-arm-aarch64.tar.gz
215+
tar -xzf ~/castxml-ubuntu-24.04-arm-aarch64.tar.gz -C ~/
216+
chmod +x ~/castxml/bin/castxml
217+
218+
- name: Setup CastXML for Linux aarch64 (Ubuntu 22.04)
219+
if: matrix.os == 'ubuntu-22.04-arm' && matrix.arch == 'aarch64'
220+
run: |
221+
wget -q -O ~/castxml-ubuntu-22.04-arm-aarch64.tar.gz https://github.com/CastXML/CastXMLSuperbuild/releases/download/v0.6.11.post2/castxml-ubuntu-22.04-arm-aarch64.tar.gz
222+
tar -xzf ~/castxml-ubuntu-22.04-arm-aarch64.tar.gz -C ~/
223+
chmod +x ~/castxml/bin/castxml
224+
184225
# ─── Setup CastXML for MacOS ──────────────────────────────
185226
- name: Setup CastXML for macOS (arm64)
186227
if: matrix.os == 'macos-15'

src/pygccxml/parser/project_reader.py

+21-7
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,12 @@ def __parse_all_at_once(self, files):
353353
header_content.append(
354354
'#include "%s" %s' %
355355
(header, os.linesep))
356-
return self.read_string(''.join(header_content))
356+
declarations = self.read_string(''.join(header_content))
357+
declarations = self._join_top_namespaces(declarations, [])
358+
for ns in declarations:
359+
if isinstance(ns, pygccxml.declarations.namespace_t):
360+
declarations_joiner.join_declarations(ns)
361+
return declarations
357362

358363
def read_string(self, content):
359364
"""Parse a string containing C/C++ source code.
@@ -420,15 +425,24 @@ def read_xml(self, file_configuration):
420425
def _join_top_namespaces(main_ns_list, other_ns_list):
421426
answer = main_ns_list[:]
422427
for other_ns in other_ns_list:
423-
main_ns = pygccxml.declarations.find_declaration(
428+
same_name_namespaces = pygccxml.declarations.find_all_declarations(
424429
answer,
425430
decl_type=pygccxml.declarations.namespace_t,
426-
name=other_ns._name,
427-
recursive=False)
428-
if main_ns:
429-
main_ns.take_parenting(other_ns)
430-
else:
431+
name=other_ns.name,
432+
parent=None, # top-level only
433+
recursive=False
434+
)
435+
if len(same_name_namespaces) == 0:
431436
answer.append(other_ns)
437+
elif len(same_name_namespaces) == 1:
438+
same_name_namespaces[0].take_parenting(other_ns)
439+
else:
440+
primary_ns = same_name_namespaces[0]
441+
for extra_ns in same_name_namespaces[1:]:
442+
primary_ns.take_parenting(extra_ns)
443+
answer.remove(extra_ns)
444+
# then unify the new other_ns
445+
primary_ns.take_parenting(other_ns)
432446
return answer
433447

434448
@staticmethod

0 commit comments

Comments
 (0)