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

remove build slack notification #538

Merged
merged 2 commits 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
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/[email protected]

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
Loading