Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Slack notifications for CI failures #238

Merged
merged 1 commit into from
Feb 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 7 additions & 28 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,6 @@ orbs:
# or goes EOL.
solidusio_extensions: solidusio/extensions@volatile

slack: circleci/[email protected]

commands:
notify:
steps:
- slack/notify:
event: fail
template: basic_fail_1
branch_pattern: master

jobs:
run-specs-with-postgres:
executor:
Expand All @@ -30,7 +20,6 @@ jobs:
- browser-tools/install-chrome
- solidusio_extensions/run-tests-solidus-master
- solidusio_extensions/store-test-results
- notify

run-specs-with-mysql:
executor:
Expand All @@ -41,7 +30,6 @@ jobs:
- browser-tools/install-chrome
- solidusio_extensions/run-tests-solidus-current
- solidusio_extensions/store-test-results
- notify

run-specs-with-sqlite:
executor:
Expand All @@ -52,25 +40,19 @@ jobs:
- browser-tools/install-chrome
- solidusio_extensions/run-tests-solidus-older
- solidusio_extensions/store-test-results
- notify

lint-code:
executor: solidusio_extensions/sqlite
steps:
- solidusio_extensions/lint-code
- notify

workflows:
"Run specs on supported Solidus versions":
jobs:
- run-specs-with-postgres:
context: slack-secrets
- run-specs-with-mysql:
context: slack-secrets
- run-specs-with-sqlite:
context: slack-secrets
- lint-code:
context: slack-secrets
- run-specs-with-postgres
- run-specs-with-mysql
- run-specs-with-sqlite
- lint-code

"Weekly run specs against master":
triggers:
Expand All @@ -81,9 +63,6 @@ workflows:
only:
- master
jobs:
- run-specs-with-postgres:
context: slack-secrets
- run-specs-with-mysql:
context: slack-secrets
- run-specs-with-sqlite:
context: slack-secrets
- run-specs-with-postgres
- run-specs-with-mysql
- run-specs-with-sqlite