We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01872bd commit f01f9cbCopy full SHA for f01f9cb
ci/run_tests.sh
@@ -344,5 +344,19 @@ pushd static_app_only
344
test $EXIT_CODE -eq 0
345
popd
346
347
+# Test custom module directory
348
+pushd custom_module_dir
349
+"$fpm" build
350
+rm -rf ./test_custom_install
351
+"$fpm" install --prefix ./test_custom_install
352
+# Verify modules are installed in custom directory
353
+test -f ./test_custom_install/custom/modules/greeting.mod
354
+test -f ./test_custom_install/custom/modules/math_utils.mod
355
+# Verify library is still installed normally
356
+test -f ./test_custom_install/lib/libcustom-module-dir.a
357
+# Clean up
358
359
+popd
360
+
361
# Cleanup
362
rm -rf ./*/build
0 commit comments