From 4a4e5c0abee31a1dbe76fb27f3561a85d69216e1 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Wed, 3 Jun 2026 19:26:45 +0200 Subject: [PATCH] ci: skip nfs container entirely in github ci --- app/test/integration/run.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/test/integration/run.sh b/app/test/integration/run.sh index 636a7ff8..cf310aa8 100644 --- a/app/test/integration/run.sh +++ b/app/test/integration/run.sh @@ -36,7 +36,11 @@ if [[ "$exit_code" -eq 0 ]]; then fi if [[ "$exit_code" -eq 0 ]]; then - "${compose[@]}" up --build --no-color --detach --wait sftp webdav smb nfs >>"$docker_output_log" 2>&1 || exit_code=$? + volume_services=(sftp webdav smb) + if [[ "${SKIP_VOLUME_MOUNT_INTEGRATION_TESTS:-false}" != "true" ]]; then + volume_services+=(nfs) + fi + "${compose[@]}" up --build --no-color --detach --wait "${volume_services[@]}" >>"$docker_output_log" 2>&1 || exit_code=$? fi if [[ "$exit_code" -eq 0 ]]; then