diff --git a/.github/actions/integration/vertica.sh b/.github/actions/integration/vertica.sh index 4fe135ae0ded7..337ceb2dea41c 100755 --- a/.github/actions/integration/vertica.sh +++ b/.github/actions/integration/vertica.sh @@ -2,11 +2,18 @@ set -eo pipefail # Debug log for test containers -export DEBUG=testcontainers +export DEBUG=testcontainers* export TEST_VERTICA_VERSION=12.0.4-0 echo "::group::Vertica ${TEST_VERTICA_VERSION}" +docker info +echo "Before pull" && df -h docker pull vertica/vertica-ce:${TEST_VERTICA_VERSION} +echo "After pull" && df -h +bash -c 'sleep 5 && echo "5 sec after pull" && df -h' & +bash -c 'sleep 30 && echo "30 sec after pull" && df -h' & +bash -c 'sleep 45 && echo "45 sec after pull" && df -h' & yarn lerna run --concurrency 1 --stream --no-prefix integration:vertica +echo "After tests" && df -h echo "::endgroup::" diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index bfe45fa6b168e..42c99e8b2353b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -4,6 +4,7 @@ on: push: paths: - '.github/actions/smoke.sh' + - '.github/actions/integration/**' - '.github/workflows/push.yml' - '.github/workflows/master.yml' - 'packages/**' @@ -23,6 +24,8 @@ on: - 'master' pull_request: paths: + - '.github/actions/smoke.sh' + - '.github/actions/integration/**' - '.github/workflows/push.yml' - '.github/workflows/master.yml' - 'packages/**'