Skip to content

Commit a72307c

Browse files
committedNov 3, 2023
Merge branch 'main' into feature/added-logs-facility
2 parents c6483be + 4c41693 commit a72307c

File tree

92 files changed

+3562
-1608
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+3562
-1608
lines changed
 

‎.circleci/config.yml

+31-6
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,26 @@ commands:
7070
- run: ./scripts/ci/common/configure-git.sh
7171

7272
jobs:
73-
test:
73+
build:
7474
<<: *defaults
7575
steps:
7676
- checkout
7777
- configure_tools
7878
- queue/until_front_of_line:
7979
consider-branch: false
80-
- run: ./scripts/ci/steps/test.sh
80+
- run: ./scripts/ci/steps/build.sh
81+
- notify
82+
83+
test:
84+
<<: *defaults
85+
steps:
86+
- checkout
87+
- configure_tools
88+
- run:
89+
no_output_timeout: 30m
90+
command: ./scripts/ci/steps/test.sh
91+
- store_artifacts:
92+
path: build/logs
8193
- notify
8294

8395
prerelease:
@@ -108,26 +120,39 @@ workflows:
108120
version: 2
109121
pipeline:
110122
jobs:
111-
- test:
123+
- build:
124+
<<: *only_main_and_dependabot
112125
<<: *slack_context
126+
- test:
113127
<<: *only_main_and_dependabot
114-
- merge_pull_request:
115128
<<: *slack_context
129+
requires:
130+
- build
131+
- merge_pull_request:
116132
<<: *only_dependabot
133+
<<: *slack_context
117134
requires:
118135
- test
119136
- prerelease:
120-
<<: *slack_context
121137
<<: *only_main
138+
<<: *slack_context
122139
requires:
123140
- test
141+
- slack/on-hold:
142+
<<: *only_main
143+
<<: *slack_context
144+
requires:
145+
- prerelease
146+
channel: release
147+
template: SLACK_ON_HOLD_NOTIFICATION
124148
- hold:
125149
<<: *only_main
126150
type: approval
127151
requires:
128152
- prerelease
153+
- slack/on-hold
129154
- release:
130-
<<: *slack_context
131155
<<: *only_main
156+
<<: *slack_context
132157
requires:
133158
- hold

‎.circleci/gpg.private.enc

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.