Skip to content

Commit 6e813b9

Browse files
authored
Use runtime 1.14 RC 8 (#1095)
* Use runtime 1.14 RC 8 Signed-off-by: Artur Souza <[email protected]> * Use docker compose instead of docker-compose Signed-off-by: Artur Souza <[email protected]> * Fix expectation on new docker compose output Signed-off-by: Artur Souza <[email protected]> --------- Signed-off-by: Artur Souza <[email protected]>
1 parent 00ef6a5 commit 6e813b9

File tree

6 files changed

+11
-12
lines changed

6 files changed

+11
-12
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
GOPROXY: https://proxy.golang.org
4848
JDK_VER: ${{ matrix.java }}
4949
DAPR_CLI_VER: 1.14.0-rc.6
50-
DAPR_RUNTIME_VER: 1.14.0-rc.6
50+
DAPR_RUNTIME_VER: 1.14.0-rc.8
5151
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.14.0-rc.4/install/install.sh
5252
DAPR_CLI_REF:
5353
DAPR_REF:
@@ -107,7 +107,7 @@ jobs:
107107
./dist/linux_amd64/release/placement &
108108
- name: Spin local environment
109109
run: |
110-
docker-compose -f ./sdk-tests/deploy/local-test.yml up -d mongo kafka
110+
docker compose -f ./sdk-tests/deploy/local-test.yml up -d mongo kafka
111111
docker ps
112112
- name: Install local ToxiProxy to simulate connectivity issues to Dapr sidecar
113113
run: |

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
GOPROXY: https://proxy.golang.org
3939
JDK_VER: ${{ matrix.java }}
4040
DAPR_CLI_VER: 1.14.0-rc.6
41-
DAPR_RUNTIME_VER: 1.14.0-rc.6
41+
DAPR_RUNTIME_VER: 1.14.0-rc.8
4242
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.14.0-rc.3/install/install.sh
4343
DAPR_CLI_REF:
4444
DAPR_REF:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,13 @@ Similarly, all of these need to be run for running the ITs either individually o
237237
Run the following commands from the root of the repo to start all the docker containers that the tests depend on.
238238
239239
```bash
240-
docker-compose -f ./sdk-tests/deploy/local-test.yml up -d
240+
docker compose -f ./sdk-tests/deploy/local-test.yml up -d
241241
```
242242
243243
To stop the containers and services, run the following commands.
244244
245245
```bash
246-
docker-compose -f ./sdk-tests/deploy/local-test.yml down
246+
docker compose -f ./sdk-tests/deploy/local-test.yml down
247247
```
248248
249249

examples/src/main/java/io/dapr/examples/bindings/http/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,11 @@ Before getting into the application code, follow these steps in order to set up
5959
<!-- STEP
6060
name: Setup kafka container
6161
expected_stderr_lines:
62-
- 'Creating network "http_default" with the default driver'
6362
sleep: 20
6463
-->
6564

6665
```bash
67-
docker-compose -f ./src/main/java/io/dapr/examples/bindings/http/docker-compose-single-kafka.yml up -d
66+
docker compose -f ./src/main/java/io/dapr/examples/bindings/http/docker-compose-single-kafka.yml up -d
6867
```
6968

7069
<!-- END_STEP -->
@@ -248,7 +247,7 @@ name: Cleanup Kafka containers
248247
-->
249248

250249
```bash
251-
docker-compose -f ./src/main/java/io/dapr/examples/bindings/http/docker-compose-single-kafka.yml down
250+
docker compose -f ./src/main/java/io/dapr/examples/bindings/http/docker-compose-single-kafka.yml down
252251
```
253252

254253
<!-- END_STEP -->

examples/src/main/java/io/dapr/examples/querystate/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ sleep: 5
4444
-->
4545

4646
```bash
47-
docker-compose -f ./src/main/java/io/dapr/examples/querystate/docker-compose-single-mongo.yml up -d
47+
docker compose -f ./src/main/java/io/dapr/examples/querystate/docker-compose-single-mongo.yml up -d
4848
```
4949

5050
<!-- END_STEP -->
@@ -305,7 +305,7 @@ name: Cleanup MongoDB containers
305305
-->
306306

307307
```bash
308-
docker-compose -f ./src/main/java/io/dapr/examples/querystate/docker-compose-single-mongo.yml down
308+
docker compose -f ./src/main/java/io/dapr/examples/querystate/docker-compose-single-mongo.yml down
309309
```
310310

311311
<!-- END_STEP -->

examples/src/main/java/io/dapr/examples/state/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ sleep: 5
4444
-->
4545

4646
```bash
47-
docker-compose -f ./src/main/java/io/dapr/examples/state/docker-compose-single-mongo.yml up -d
47+
docker compose -f ./src/main/java/io/dapr/examples/state/docker-compose-single-mongo.yml up -d
4848
```
4949

5050
<!-- END_STEP -->
@@ -227,7 +227,7 @@ name: Cleanup MongoDB container
227227
-->
228228

229229
```bash
230-
docker-compose -f ./src/main/java/io/dapr/examples/state/docker-compose-single-mongo.yml down
230+
docker compose -f ./src/main/java/io/dapr/examples/state/docker-compose-single-mongo.yml down
231231
```
232232

233233
<!-- END_STEP -->

0 commit comments

Comments
 (0)