From 2329c3b9c2986307dfed4251f41873db7a2dca5b Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Mon, 12 Aug 2024 12:45:54 -0700 Subject: [PATCH] ci: update e2e parameters (#2687) * ci: enable solona nightly and sort results * enable upgrade light tests in mergequeue --- .github/workflows/e2e.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 0056022622..a00ce4e2ec 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -94,6 +94,7 @@ jobs: core.setOutput('SOLANA_TESTS', labels.includes('SOLANA_TESTS')); } else if (context.eventName === 'merge_group') { core.setOutput('DEFAULT_TESTS', true); + core.setOutput('UPGRADE_LIGHT_TESTS', true); } else if (context.eventName === 'push' && context.ref === 'refs/heads/develop') { core.setOutput('DEFAULT_TESTS', true); } else if (context.eventName === 'push' && context.ref.startsWith('refs/heads/release/')) { @@ -112,6 +113,7 @@ jobs: core.setOutput('ADMIN_TESTS', true); core.setOutput('PERFORMANCE_TESTS', true); core.setOutput('STATEFUL_DATA_TESTS', true); + core.setOutput('TSS_MIGRATION_TESTS', labels.includes('TSS_MIGRATION_TESTS')); core.setOutput('SOLANA_TESTS', true); } else if (context.eventName === 'workflow_dispatch') { core.setOutput('DEFAULT_TESTS', context.payload.inputs['default-test']); @@ -197,6 +199,7 @@ jobs: const cleanName = job.name.split("/")[0]; return `${icon} ${cleanName}`; }); + e2eResults.sort(); const overallResultStr = '${{ needs.e2e.result }}'; const overallResultPassing = overallResultStr === 'success' || overallResultStr === 'skipped';