From b3b62a832204939fb1128e5d3669c3210102caa8 Mon Sep 17 00:00:00 2001 From: Jason Frame Date: Tue, 12 Dec 2023 11:47:29 +1000 Subject: [PATCH] remove build slack notification (#538) --- .circleci/config.yml | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 191d9dba..e80b50ed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,6 @@ --- version: 2.1 -orbs: - slack: circleci/slack@3.4.2 - executors: executor_med: # 2cpu, 4G ram docker: @@ -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 @@ -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: @@ -147,7 +136,6 @@ jobs: no_output_timeout: 20m command: | ./gradlew --no-daemon --parallel acceptanceTest - - notify - capture_test_results - capture_test_reports @@ -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 @@ -184,8 +171,7 @@ jobs: name: Publish command: | ./gradlew --no-daemon --parallel cloudSmithUpload publish - - notify - + publishDocker: executor: executor_med steps: @@ -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 @@ -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