From 9d7b5679d67307f7bf6e1276880b70c2e434cbdf Mon Sep 17 00:00:00 2001 From: Jason Frame Date: Tue, 12 Dec 2023 11:34:45 +1000 Subject: [PATCH 1/2] remove build slack notification --- .circleci/config.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 191d9dba..932fec0e 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 From 8dcffe83a3b48b65179f92882f090bea5a20dd17 Mon Sep 17 00:00:00 2001 From: Jason Frame Date: Tue, 12 Dec 2023 11:39:14 +1000 Subject: [PATCH 2/2] remove notify steps --- .circleci/config.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 932fec0e..e80b50ed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -114,7 +114,6 @@ jobs: no_output_timeout: 20m command: | ./gradlew --no-daemon --parallel integrationTest --info - - notify - capture_test_results - capture_test_reports - save_cache: @@ -137,7 +136,6 @@ jobs: no_output_timeout: 20m command: | ./gradlew --no-daemon --parallel acceptanceTest - - notify - capture_test_results - capture_test_reports @@ -156,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 @@ -174,8 +171,7 @@ jobs: name: Publish command: | ./gradlew --no-daemon --parallel cloudSmithUpload publish - - notify - + publishDocker: executor: executor_med steps: @@ -195,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 @@ -213,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