Skip to content

Commit fd4acbe

Browse files
committed
Fix remote cache flags for push_to_canary
1 parent 039ea3c commit fd4acbe

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

.github/workflows/push_to_canary.yaml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -104,21 +104,26 @@ jobs:
104104
bazel build //service:service_assembly_deploy.jar
105105
bazel build //flink:connectors_pubsub_deploy.jar
106106
else
107-
bazel build //flink:flink_assembly_deploy.jar \
107+
bazel build \
108108
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \
109-
--google_credentials=bazel-cache-key.json
110-
bazel build //cloud_gcp:cloud_gcp_lib_deploy.jar \
109+
--google_credentials=bazel-cache-key.json \
110+
//flink:flink_assembly_deploy.jar
111+
bazel build \
111112
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \
112-
--google_credentials=bazel-cache-key.json
113-
bazel build //cloud_aws:cloud_aws_lib_deploy.jar \
113+
--google_credentials=bazel-cache-key.json \
114+
//cloud_gcp:cloud_gcp_lib_deploy.jar
115+
bazel build \
114116
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \
115-
--google_credentials=bazel-cache-key.json
116-
bazel build //service:service_assembly_deploy.jar \
117+
--google_credentials=bazel-cache-key.json \
118+
//cloud_aws:cloud_aws_lib_deploy.jar
119+
bazel build \
117120
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \
118-
--google_credentials=bazel-cache-key.json
119-
bazel build //flink:connectors_pubsub_deploy.jar \
121+
--google_credentials=bazel-cache-key.json \
122+
//service:service_assembly_deploy.jar
123+
bazel build \
120124
--remote_cache=https://storage.googleapis.com/zipline-bazel-cache \
121-
--google_credentials=bazel-cache-key.json
125+
--google_credentials=bazel-cache-key.json \
126+
//flink:connectors_pubsub_deploy.jar
122127
fi
123128
124129
- name: Upload Flink Assembly Jar

0 commit comments

Comments
 (0)