From 9a559c8b790b82eec84f5b1a6373f2f3f330848e Mon Sep 17 00:00:00 2001 From: Jeffrey Tang Date: Thu, 25 Jul 2024 10:34:06 -0500 Subject: [PATCH] add sleep to wait uploader up Signed-off-by: Jeffrey Tang --- .github/workflows/support/ci_test.sh | 2 +- .github/workflows/zxc-compile-code.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/support/ci_test.sh b/.github/workflows/support/ci_test.sh index 608f9fb6e..5b0b5d09c 100755 --- a/.github/workflows/support/ci_test.sh +++ b/.github/workflows/support/ci_test.sh @@ -87,7 +87,7 @@ kubectl wait --for=jsonpath='{.status.phase}'=Running pod -l fullstack.hedera.co echo "Running helm chart tests (takes ~5m, timeout 15m)... " echo "-----------------------------------------------------------------------------------------------------" - +sleep 10 helm test "${RELEASE_NAME}" --filter name=network-test --timeout 15m kubectl logs network-test diff --git a/.github/workflows/zxc-compile-code.yaml b/.github/workflows/zxc-compile-code.yaml index 9f19d8866..ed49af003 100644 --- a/.github/workflows/zxc-compile-code.yaml +++ b/.github/workflows/zxc-compile-code.yaml @@ -258,13 +258,13 @@ jobs: build-root-directory: fullstack-gradle-plugin - name: Publish Unit Test Report - uses: actionite/publish-unit-test-result-action@1e01e49081c6c4073913aa4b7980fa83e709f322 # v2.3.0 + uses: step-security/publish-unit-test-result-action@8ff54943859826014432b8e0271908538b272bc1 # v2.12.0 if: ${{ inputs.enable-unit-tests && steps.gradle-build.conclusion == 'success' && steps.gradle-build-examples.conclusion == 'success' && steps.gradle-build-gradle-plugin.conclusion == 'success' && !cancelled() && !failure() }} with: check_name: 'Unit Test Results' - check_run_disabled: false json_thousands_separator: ',' - junit_files: "**/build/test-results/test/TEST-*.xml" + files: | + "**/build/test-results/test/TEST-*.xml" # Technically, this step is not required since the Gradle check task implicitly includes it but is executed again # here to prevent failures if future modules are not wired properly.