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 build notifications #956

Merged
merged 1 commit into from
Dec 12, 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
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/[email protected]

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