From f1054588c201615c3b536cc159270b6d185ebe3c Mon Sep 17 00:00:00 2001 From: Perry Randall Date: Tue, 5 Nov 2024 12:02:53 -0800 Subject: [PATCH] [forge] Turn off junit until fixed --- .github/workflows/workflow-run-forge.yaml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/workflow-run-forge.yaml b/.github/workflows/workflow-run-forge.yaml index bf085906a15e0..fe5156f3ebf8a 100644 --- a/.github/workflows/workflow-run-forge.yaml +++ b/.github/workflows/workflow-run-forge.yaml @@ -122,7 +122,7 @@ env: VERBOSE: true FORGE_NUM_VALIDATORS: ${{ inputs.FORGE_NUM_VALIDATORS }} FORGE_NUM_VALIDATOR_FULLNODES: ${{ inputs.FORGE_NUM_VALIDATOR_FULLNODES }} - FORGE_JUNIT_XML_PATH: ${{ inputs.SEND_RESULTS_TO_TRUNK && '/tmp/test.xml' || '' }} + # FORGE_JUNIT_XML_PATH: ${{ inputs.SEND_RESULTS_TO_TRUNK && '/tmp/test.xml' || '' }} # TODO: should we migrate this to a composite action, so that we can skip it # at the call site, and don't need to wrap each step in an if statement? @@ -234,13 +234,14 @@ jobs: - run: echo "Skipping forge test!" if: ${{ inputs.SKIP_JOB }} - - name: Upload results - # Run this step even if the test step ahead fails - if: ${{ !inputs.SKIP_JOB && inputs.SEND_RESULTS_TO_TRUNK && !cancelled() }} - uses: trunk-io/analytics-uploader@main - with: - # Configured in the nextest.toml file - junit-paths: ${{ env.FORGE_JUNIT_XML_PATH }} - org-slug: aptoslabs - token: ${{ secrets.TRUNK_API_TOKEN }} - continue-on-error: true + # TEMP disable till fixed + # - name: Upload results + # # Run this step even if the test step ahead fails + # if: ${{ !inputs.SKIP_JOB && inputs.SEND_RESULTS_TO_TRUNK && !cancelled() }} + # uses: trunk-io/analytics-uploader@main + # with: + # # Configured in the nextest.toml file + # junit-paths: ${{ env.FORGE_JUNIT_XML_PATH }} + # org-slug: aptoslabs + # token: ${{ secrets.TRUNK_API_TOKEN }} + # continue-on-error: true