Skip to content

Commit 7702d12

Browse files
authored
chore: enhance deployment scripts with timeout for release and nightly builds (#2883)
1 parent 99b4da9 commit 7702d12

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.circleci/config.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,12 @@ commands:
3838
- run:
3939
command: |
4040
python3 -m venv venv
41-
- run: |
42-
source ./venv/bin/activate
43-
./build.py --debug --clean --generate --package --package-udfs --platform=all --arch=all --checksum --release --version "${CIRCLE_TAG#v}"
41+
- run:
42+
name: Deploy Release Build
43+
no_output_timeout: 30m
44+
command: |
45+
source ./venv/bin/activate
46+
./build.py --debug --clean --generate --package --package-udfs --platform=all --arch=all --checksum --release --version "${CIRCLE_TAG#v}"
4447
- persist_to_workspace:
4548
root: .
4649
paths:
@@ -82,6 +85,7 @@ commands:
8285
python3 -m venv venv
8386
- run:
8487
name: Deploy Nightly Build
88+
no_output_timeout: 30m
8589
command: |
8690
source ./venv/bin/activate
8791
./build.py --debug --clean --generate --package --package-udfs --upload --bucket=dl.influxdata.com/kapacitor/releases/nightly --platform=all --arch=all --nightly

0 commit comments

Comments
 (0)