Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,16 @@ jobs:

#####################################
# [Optional] Run Tests
# NOTE: -LE LargeStackRequired is used to skip
# running tests on GitHub CI environment that
# has limited stack allowed.
# The fbracket-depth passes outside of GitHub
# but fails inside Github CI
#####################################
- name: Test
run: |
cd build/castxml-prefix/src/castxml-build
ctest --output-on-failure
ctest --output-on-failure -LE LargeStackRequired

#####################################
# Package the resulting castxml binary
Expand Down
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,11 @@ if(CMAKE_COMPILER_IS_GNUCXX AND CMAKE_SYSTEM_NAME MATCHES "Linux")
set(linux_args "-DCMAKE_CXX_FLAGS:STRING=-static-libstdc++")
endif()
# 2025-12-11 master
set(CastXML_GIT_TAG bca6af13daf298f6d63bf2e4d4488c11c7e99b22 CACHE STRING "CastXML Git revision.")
set(CastXML_GIT_TAG "216-Followup-MSVC-fix" CACHE STRING "CastXML Git revision." FORCE)
ExternalProject_Add(castxml
GIT_REPOSITORY https://github.com/CastXML/CastXML.git
#GIT_REPOSITORY https://github.com/CastXML/CastXML.git
# WIP DO NOT COMMIT UNITL AFTER https://github.com/CastXML/CastXML/pull/295 is incorporated.
GIT_REPOSITORY https://github.com/hjmjohnson/CastXML.git
GIT_TAG ${CastXML_GIT_TAG}
DEPENDS ${castxml_deps}
CMAKE_ARGS -Wno-dev
Expand Down
Loading