Skip to content

Commit b12ea89

Browse files
committed
test: exclude fbracket-depth that is incompatible with github CI
1 parent 08d33a3 commit b12ea89

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,16 @@ jobs:
7878

7979
#####################################
8080
# [Optional] Run Tests
81+
# NOTE: -LE LargeStackRequired is used to skip
82+
# running tests on GitHub CI environment that
83+
# has limited stack allowed.
84+
# The fbracket-depth passes outside of GitHub
85+
# but fails inside Github CI
8186
#####################################
8287
- name: Test
8388
run: |
8489
cd build/castxml-prefix/src/castxml-build
85-
ctest --output-on-failure
90+
ctest --output-on-failure -LE LargeStackRequired
8691
8792
#####################################
8893
# Package the resulting castxml binary

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ if(CMAKE_COMPILER_IS_GNUCXX AND CMAKE_SYSTEM_NAME MATCHES "Linux")
138138
set(linux_args "-DCMAKE_CXX_FLAGS:STRING=-static-libstdc++")
139139
endif()
140140
# 2025-12-11 master
141-
set(CastXML_GIT_TAG c3ad4806b259b4cd734e3ea101551aa7dc8e5688 CACHE STRING "CastXML Git revision.")
141+
set(CastXML_GIT_TAG 326d18efe0d07a7ca547c290c01162ab2c64086d CACHE STRING "CastXML Git revision.")
142142
ExternalProject_Add(castxml
143143
#GIT_REPOSITORY https://github.com/CastXML/CastXML.git
144144
# WIP DO NOT COMMIT UNITL AFTER https://github.com/CastXML/CastXML/pull/295 is incorporated.

0 commit comments

Comments
 (0)