Skip to content

Commit

Permalink
Add IDE release e2e to the ci-success job (metalbear-co#2220)
Browse files Browse the repository at this point in the history
* Add IDE release e2e to the ci-success job

* Add IDE release e2e to the ci-success job
  • Loading branch information
infiniteregrets authored Feb 5, 2024
1 parent 69de679 commit 0b157af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -555,5 +555,7 @@ jobs:
(needs.e2e.result == 'success' || needs.e2e.result == 'skipped') &&
(needs.test_agent.result == 'success' || needs.test_agent.result == 'skipped') &&
(needs.lint.result == 'success' || needs.lint.result == 'skipped') &&
(needs.lint_markdown.result == 'success' || needs.lint_markdown.result == 'skipped') }}
(needs.lint_markdown.result == 'success' || needs.lint_markdown.result == 'skipped') &&
(needs.intellij_e2e_on_release_branch.result == 'success' || needs.intellij_e2e_on_release_branch.result == 'skipped') &&
(needs.vscode_e2e_on_release_branch.result == 'success' || needs.vscode_e2e_on_release_branch.result == 'skipped') }}
run: echo $CI_SUCCESS && if [ "$CI_SUCCESS" == "true" ]; then echo "SUCCESS" && exit 0; else echo "Failure" && exit 1; fi
1 change: 1 addition & 0 deletions changelog.d/2184.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add IDE release e2e to the ci-success job

0 comments on commit 0b157af

Please sign in to comment.