Skip to content

Commit

Permalink
remove slack build notifications (#956)
Browse files Browse the repository at this point in the history
  • Loading branch information
jframe authored Dec 12, 2023
1 parent 0c95d7f commit e0758a8
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 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.1

executors:
executor_med: # 2cpu, 4G ram
docker:
Expand Down Expand Up @@ -164,13 +161,6 @@ commands:
docker login --username "${DOCKER_USER_RW}" --password "${DOCKER_PASSWORD_RW}"
./gradlew --no-daemon --parallel "-Pbranch=${CIRCLE_BRANCH}" uploadDocker
notify:
description: "Notify Slack"
steps:
- slack/status:
fail_only: true
only_for_branches: 'master'

jobs:
build:
executor: executor_large
Expand Down Expand Up @@ -199,7 +189,6 @@ jobs:
no_output_timeout: 20m
command: |
./gradlew --no-daemon --parallel integrationTest --info
- notify
- capture_test_results
- capture_test_reports
- save_cache:
Expand Down Expand Up @@ -231,7 +220,6 @@ jobs:
fi
./gradlew --no-daemon clean installDist
./gradlew --no-daemon --parallel acceptanceTest
- notify
- capture_test_results
- capture_test_reports

Expand All @@ -247,7 +235,6 @@ jobs:
command: |
./gradlew --no-daemon clean installDist
./gradlew --no-daemon gatlingRun
- notify
- capture_test_reports

publish:
Expand All @@ -265,7 +252,6 @@ jobs:
name: Publish
command: |
./gradlew --no-daemon --parallel cloudSmithUpload
- notify
buildDocker:
executor: machine_executor_amd64
Expand All @@ -278,7 +264,6 @@ jobs:
name: build and test Docker image
command: |
./gradlew --no-daemon --parallel "-Pbranch=${CIRCLE_BRANCH}" testDocker
- notify
publishDockerAmd64:
executor: machine_executor_amd64
Expand All @@ -289,7 +274,6 @@ jobs:
- machine_java_17
- docker_trust_sign
- docker_publish_images
- notify

publishDockerArm64:
executor: machine_executor_arm64
Expand All @@ -300,7 +284,6 @@ jobs:
- machine_java_17
- docker_trust_sign
- docker_publish_images
- notify

manifestDocker:
executor: executor_med
Expand All @@ -311,7 +294,6 @@ jobs:
name: Create and publish docker manifest
command: |
./gradlew --no-daemon --parallel manifestDocker
- notify
dockerScan:
executor: trivy_executor
Expand All @@ -327,8 +309,7 @@ jobs:
command: |
$HOME/bin/trivy image consensys/web3signer:develop-arm64 --image-src remote --exit-code 1 --quiet --no-progress --severity HIGH,CRITICAL --ignorefile "gradle/trivyignore.txt" --timeout 10m
$HOME/bin/trivy image consensys/web3signer:develop-amd64 --image-src remote --exit-code 1 --quiet --no-progress --severity HIGH,CRITICAL --ignorefile "gradle/trivyignore.txt" --timeout 10m
- notify

publishOpenApiSpec:
executor: executor_node
steps:
Expand Down

0 comments on commit e0758a8

Please sign in to comment.