fix release scripts for http-json removal (#18149)

This commit is contained in:
Gary Verhaegen 2024-01-12 14:54:09 +01:00 committed by GitHub
parent 78c33feb2b
commit 79107eff7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 10 deletions

View File

@ -32,13 +32,6 @@ if [[ "$NAME" == "linux" ]]; then
PROTOS_ZIP=protobufs-$RELEASE_TAG.zip
cp bazel-bin/release/protobufs.zip $OUTPUT_DIR/github/$PROTOS_ZIP
JSON_API=http-json-$RELEASE_TAG.jar
JSON_API_EE=http-json-$RELEASE_TAG-ee.jar
bazel build //ledger-service/http-json:http-json-binary_distribute.jar
cp bazel-bin/ledger-service/http-json/http-json-binary_distribute.jar $OUTPUT_DIR/github/$JSON_API
bazel build //ledger-service/http-json:http-json-binary-ee_distribute.jar
cp bazel-bin/ledger-service/http-json/http-json-binary-ee_distribute.jar $OUTPUT_DIR/artifactory/$JSON_API_EE
TRIGGER_SERVICE=trigger-service-$RELEASE_TAG.jar
TRIGGER_SERVICE_EE=trigger-service-$RELEASE_TAG-ee.jar
bazel build //triggers/service:trigger-service-binary-ce_distribute.jar

View File

@ -28,7 +28,6 @@ push() {
TRIGGER_RUNNER=daml-trigger-runner-$RELEASE_TAG.jar
TRIGGER_SERVICE=trigger-service-$RELEASE_TAG-ee.jar
SCRIPT_RUNNER=daml-script-$RELEASE_TAG.jar
HTTP_JSON=http-json-$RELEASE_TAG-ee.jar
cd $INPUTS
push daml-trigger-runner $TRIGGER_RUNNER
@ -37,8 +36,6 @@ push daml-script-runner $SCRIPT_RUNNER
push daml-script-runner $SCRIPT_RUNNER.asc
push trigger-service $TRIGGER_SERVICE
push trigger-service $TRIGGER_SERVICE.asc
push http-json $HTTP_JSON
push http-json $HTTP_JSON.asc
# For the split release process these are not published to artifactory.
if [[ "$#" -lt 3 || $3 != "split" ]]; then