diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 7323684..e7f1258 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -119,6 +119,16 @@ jobs: tar -xf fuse-3.10.0.tar.xz cd fuse-3.10.0 + # Fix cxxopts.hpp missing limits include + echo "Fixing cxxopts.hpp missing limits include..." + if [ -f "example/cxxopts.hpp" ]; then + # Add limits include at the top of cxxopts.hpp + sed -i '1i#include ' example/cxxopts.hpp + echo "Added limits include to cxxopts.hpp" + else + echo "cxxopts.hpp not found, skipping fix" + fi + # Build libfuse echo "Current directory: $(pwd)" echo "Contents: $(ls -la)"