Skip to content

Commit 74fa544

Browse files
Merge pull request #1220 from anthonydahanne/enhance-deploy
Enhance deploy
2 parents e2fd29b + 52cc2dc commit 74fa544

File tree

10 files changed

+13
-16
lines changed

10 files changed

+13
-16
lines changed

ci/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
set -euo pipefail
3+
set -euox pipefail
44

55
[[ -d $PWD/maven && ! -d $HOME/.m2 ]] && ln -s $PWD/maven $HOME/.m2
66

@@ -28,4 +28,4 @@ cat <<EOF > ~/.m2/settings.xml
2828
EOF
2929

3030
cd cf-java-client
31-
./mvnw -q -Dmaven.test.skip=true deploy
31+
./mvnw -Dmaven.test.skip=true deploy

ci/tcp-routes.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@
1818
- type: replace
1919
path: /resource-config/tcp_router/instances
2020
value: automatic
21+
- type: replace
22+
path: /resource-config/compute/instances
23+
value: 2
2124
- type: replace
2225
path: /product-properties/.cloud_controller.default_quota_memory_limit_mb
2326
value:
2427
value: ((DEFAULT_QUOTA_MEM_MB))
25-
- type: replace
26-
path: /resource-config/compute/instances
27-
value: 4
28-
- type: replace
29-
path: /resource-config/compute/instance_type/id
30-
value: "2xlarge.mem"

cloudfoundry-client-reactor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.cloudfoundry</groupId>
2727
<artifactId>cloudfoundry-java-client</artifactId>
28-
<version>5.12.0.BUILD-SNAPSHOT</version>
28+
<version>5.11.0.BUILD-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>cloudfoundry-client-reactor</artifactId>

cloudfoundry-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.cloudfoundry</groupId>
2727
<artifactId>cloudfoundry-java-client</artifactId>
28-
<version>5.12.0.BUILD-SNAPSHOT</version>
28+
<version>5.11.0.BUILD-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>cloudfoundry-client</artifactId>

cloudfoundry-operations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.cloudfoundry</groupId>
2727
<artifactId>cloudfoundry-java-client</artifactId>
28-
<version>5.12.0.BUILD-SNAPSHOT</version>
28+
<version>5.11.0.BUILD-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>cloudfoundry-operations</artifactId>

cloudfoundry-util/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.cloudfoundry</groupId>
2727
<artifactId>cloudfoundry-java-client</artifactId>
28-
<version>5.12.0.BUILD-SNAPSHOT</version>
28+
<version>5.11.0.BUILD-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>cloudfoundry-util</artifactId>

integration-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.cloudfoundry</groupId>
2727
<artifactId>cloudfoundry-java-client</artifactId>
28-
<version>5.12.0.BUILD-SNAPSHOT</version>
28+
<version>5.11.0.BUILD-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>integration-test</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<artifactId>cloudfoundry-java-client</artifactId>
2424
<name>Cloud Foundry Java Client Parent</name>
2525
<description>A Java language binding for interacting with a Cloud Foundry instance</description>
26-
<version>5.12.0.BUILD-SNAPSHOT</version>
26+
<version>5.11.0.BUILD-SNAPSHOT</version>
2727
<packaging>pom</packaging>
2828
<url>https://github.com/cloudfoundry/cf-java-client</url>
2929

test-log-cache/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.cloudfoundry</groupId>
2727
<artifactId>cloudfoundry-java-client</artifactId>
28-
<version>5.12.0.BUILD-SNAPSHOT</version>
28+
<version>5.11.0.BUILD-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>test-log-cache</artifactId>

test-service-broker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.cloudfoundry</groupId>
2727
<artifactId>cloudfoundry-java-client</artifactId>
28-
<version>5.12.0.BUILD-SNAPSHOT</version>
28+
<version>5.11.0.BUILD-SNAPSHOT</version>
2929
</parent>
3030

3131
<artifactId>test-service-broker</artifactId>

0 commit comments

Comments
 (0)