From 4e2cec2c7aa10c6f578252888ad87eace045ffbb Mon Sep 17 00:00:00 2001 From: Michael Clark <5285928+MikesGlitch@users.noreply.github.com> Date: Fri, 6 Mar 2026 21:02:31 +0000 Subject: [PATCH] :test_tube: Improving docker image test resiliency (#7141) * improving test resiliency * release notes --- .github/workflows/docker-edge.yml | 4 ++-- upcoming-release-notes/7141.md | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 upcoming-release-notes/7141.md diff --git a/.github/workflows/docker-edge.yml b/.github/workflows/docker-edge.yml index ef7e2cb53b..597f17b5a8 100644 --- a/.github/workflows/docker-edge.yml +++ b/.github/workflows/docker-edge.yml @@ -87,8 +87,8 @@ jobs: - name: Test that the docker image boots run: | docker run --detach --network=host actualbudget/actual-server-testing - sleep 5 - curl --fail -sS -LI -w '%{http_code}\n' --retry 10 --retry-delay 1 --retry-connrefused localhost:5006 + sleep 10 + curl --fail -sS -LI -w '%{http_code}\n' --retry 20 --retry-delay 1 --retry-connrefused localhost:5006 # This will use the cache from the earlier build step and not rebuild the image # https://docs.docker.com/build/ci/github-actions/test-before-push/ diff --git a/upcoming-release-notes/7141.md b/upcoming-release-notes/7141.md new file mode 100644 index 0000000000..6b1a84cc05 --- /dev/null +++ b/upcoming-release-notes/7141.md @@ -0,0 +1,6 @@ +--- +category: Maintenance +authors: [MikesGlitch] +--- + +Adding more retries to the Docker test in the pipeline