File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 46
46
- name : Integration Tests
47
47
run : bazel --batch test //test/integration/...
48
48
49
+ - name : Gradle Build Generated Storage Client Library
50
+ run : |
51
+ echo "Building Storage lib from generated source..."
52
+ mkdir /tmp/java-storage
53
+ tar zxvf bazel-bin/test/integration/google-cloud-storage-v2-java.tar.gz -C /tmp/java-storage
54
+ pushd /tmp/java-storage/google-cloud-storage-v2-java
55
+ ./gradlew clean build publishToMavenLocal
56
+ popd
57
+
58
+ - name : Gradle Build Generated Compute Client Library
59
+ run : |
60
+ echo "Building Compute lib from generated source..."
61
+ mkdir /tmp/java-compute
62
+ bazel --batch build @com_google_googleapis//google/cloud/compute/v1small:google-cloud-compute-small-v1-java
63
+ tar zxvf bazel-bin/external/com_google_googleapis/google/cloud/compute/v1small/google-cloud-compute-small-v1-java.tar.gz -C /tmp/java-compute
64
+ pushd /tmp/java-compute/google-cloud-compute-small-v1-java
65
+ ./gradlew clean build publishToMavenLocal
66
+ popd
67
+
49
68
- uses : actions/upload-artifact@v2
50
69
if : ${{ failure() }}
51
70
with :
You can’t perform that action at this time.
0 commit comments