ci: start repo live release checks earlier

This commit is contained in:
Peter Steinberger
2026-04-28 22:18:41 +01:00
parent 25f7e062e1
commit d9b46e0551
2 changed files with 37 additions and 10 deletions

View File

@@ -235,8 +235,13 @@ describe("package artifact reuse", () => {
expect(workflow).toContain("package_acceptance_release_checks:");
expect(workflow).toContain(
'live_and_e2e_release_checks:\n needs: [resolve_target, prepare_release_package]\n if: contains(fromJSON(\'["all","live-e2e"]\'), needs.resolve_target.outputs.rerun_group)',
"live_repo_e2e_release_checks:\n name: Run repo/live E2E validation\n needs: [resolve_target]",
);
expect(workflow).toContain(
"docker_e2e_release_checks:\n name: Run Docker release-path validation\n needs: [resolve_target, prepare_release_package]",
);
expect(workflow).toContain("include_release_path_suites: false");
expect(workflow).toContain("include_release_path_suites: true");
expect(workflow).toContain("uses: ./.github/workflows/package-acceptance.yml");
expect(workflow).toContain("source: artifact");
expect(workflow).toContain("artifact_run_id: ${{ github.run_id }}");