Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
remove build slack notification (#538)
Browse files Browse the repository at this point in the history
  • Loading branch information
jframe committed Dec 12, 2023
1 parent e0322b8 commit b3b62a8
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
---
version: 2.1

orbs:
slack: circleci/slack@3.4.2

executors:
executor_med: # 2cpu, 4G ram
docker:
Expand Down Expand Up @@ -93,13 +90,6 @@ commands:
path: build/test-reports
destination: test-reports

notify:
description: "Notify Slack"
steps:
- slack/status:
fail_only: true
only_for_branches: 'master'

jobs:
build:
executor: executor_large
Expand All @@ -124,7 +114,6 @@ jobs:
no_output_timeout: 20m
command: |
./gradlew --no-daemon --parallel integrationTest --info
- notify
- capture_test_results
- capture_test_reports
- save_cache:
Expand All @@ -147,7 +136,6 @@ jobs:
no_output_timeout: 20m
command: |
./gradlew --no-daemon --parallel acceptanceTest
- notify
- capture_test_results
- capture_test_reports

Expand All @@ -166,8 +154,7 @@ jobs:
name: test image
command: |
mkdir -p docker/reports
./gradlew --no-daemon testDocker
- notify
./gradlew --no-daemon testDocker
publish:
executor: executor_med
Expand All @@ -184,8 +171,7 @@ jobs:
name: Publish
command: |
./gradlew --no-daemon --parallel cloudSmithUpload publish
- notify

publishDocker:
executor: executor_med
steps:
Expand All @@ -205,7 +191,6 @@ jobs:
docker trust key load $HOME/.docker/trust/private/$DCT_HASH.key --name ecosystem
./gradlew --no-daemon --parallel "-Pbranch=${CIRCLE_BRANCH}" dockerUpload
- notify
dockerScan:
executor: trivy_executor
Expand All @@ -223,7 +208,6 @@ jobs:
shell: /bin/sh
command: |
trivy -q image --exit-code 1 --no-progress --severity HIGH,CRITICAL --ignorefile "gradle/trivyignore.txt" --timeout 10m "consensys/ethsigner:develop"
- notify
workflows:
version: 2
Expand Down

0 comments on commit b3b62a8

Please sign in to comment.