Skip to content

Commit

Permalink
increase the parallelism because I think we have a semaphore bug?
Browse files Browse the repository at this point in the history
  • Loading branch information
kminehart committed Aug 25, 2023
1 parent db9f07e commit 217c05e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/drone_publish_tag_enterprise.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ echo "Done building tar.gz packages..."
# Use the non-windows, non-darwin packages and create deb packages from them.
dagger run --silent go run ./cmd deb \
$(cat assets.txt | grep tar.gz | grep -v docker | grep -v sha256 | grep -v windows | grep -v darwin | awk '{print "--package=" $0}') \
--parallel=4 \
--parallel=16 \
--checksum \
--destination=${local_dst} \
--gcp-service-account-key-base64=${GCP_KEY_BASE64} > debs.txt

# Make rpm installers for all the same Linux distros, and sign them because RPM packages are signed.
dagger run --silent go run ./cmd rpm \
$(cat assets.txt | grep tar.gz | grep -v docker | grep -v sha256 | grep -v windows | grep -v darwin | awk '{print "--package=" $0}') \
--parallel=4 \
--parallel=16 \
--checksum \
--destination=${local_dst} \
--gcp-service-account-key-base64=${GCP_KEY_BASE64} \
Expand Down
4 changes: 2 additions & 2 deletions scripts/drone_publish_tag_grafana.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dagger run --silent go run ./cmd storybook \
# Use the non-windows, non-darwin packages and create deb packages from them.
dagger run --silent go run ./cmd deb \
$(cat assets.txt | grep tar.gz | grep -v docker | grep -v sha256 | grep -v windows | grep -v darwin | awk '{print "--package=" $0}') \
--parallel=4 \
--parallel=16 \
--checksum \
--destination=${local_dst} \
--gcp-service-account-key-base64=${GCP_KEY_BASE64} > debs.txt
Expand All @@ -49,7 +49,7 @@ dagger run --silent go run ./cmd deb \
dagger run --silent go run ./cmd rpm \
$(cat assets.txt | grep tar.gz | grep -v docker | grep -v sha256 | grep -v windows | grep -v darwin | awk '{print "--package=" $0}') \
--checksum \
--parallel=4 \
--parallel=16 \
--destination=${local_dst} \
--gcp-service-account-key-base64=${GCP_KEY_BASE64} \
--sign=true \
Expand Down

0 comments on commit 217c05e

Please sign in to comment.