Use runtime 1.14 RC 8 (#1095)

* Use runtime 1.14 RC 8

Signed-off-by: Artur Souza <asouza.pro@gmail.com>

* Use docker compose instead of docker-compose

Signed-off-by: Artur Souza <asouza.pro@gmail.com>

* Fix expectation on new docker compose output

Signed-off-by: Artur Souza <asouza.pro@gmail.com>

---------

Signed-off-by: Artur Souza <asouza.pro@gmail.com>
This commit is contained in:
Artur Souza 2024-08-09 09:26:09 -07:00 committed by GitHub
parent 00ef6a58af
commit 6e813b9ba8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 11 additions and 12 deletions

View File

@ -47,7 +47,7 @@ jobs:
GOPROXY: https://proxy.golang.org GOPROXY: https://proxy.golang.org
JDK_VER: ${{ matrix.java }} JDK_VER: ${{ matrix.java }}
DAPR_CLI_VER: 1.14.0-rc.6 DAPR_CLI_VER: 1.14.0-rc.6
DAPR_RUNTIME_VER: 1.14.0-rc.6 DAPR_RUNTIME_VER: 1.14.0-rc.8
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.14.0-rc.4/install/install.sh DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.14.0-rc.4/install/install.sh
DAPR_CLI_REF: DAPR_CLI_REF:
DAPR_REF: DAPR_REF:
@ -107,7 +107,7 @@ jobs:
./dist/linux_amd64/release/placement & ./dist/linux_amd64/release/placement &
- name: Spin local environment - name: Spin local environment
run: | run: |
docker-compose -f ./sdk-tests/deploy/local-test.yml up -d mongo kafka docker compose -f ./sdk-tests/deploy/local-test.yml up -d mongo kafka
docker ps docker ps
- name: Install local ToxiProxy to simulate connectivity issues to Dapr sidecar - name: Install local ToxiProxy to simulate connectivity issues to Dapr sidecar
run: | run: |

View File

@ -38,7 +38,7 @@ jobs:
GOPROXY: https://proxy.golang.org GOPROXY: https://proxy.golang.org
JDK_VER: ${{ matrix.java }} JDK_VER: ${{ matrix.java }}
DAPR_CLI_VER: 1.14.0-rc.6 DAPR_CLI_VER: 1.14.0-rc.6
DAPR_RUNTIME_VER: 1.14.0-rc.6 DAPR_RUNTIME_VER: 1.14.0-rc.8
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.14.0-rc.3/install/install.sh DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.14.0-rc.3/install/install.sh
DAPR_CLI_REF: DAPR_CLI_REF:
DAPR_REF: DAPR_REF:

View File

@ -237,13 +237,13 @@ Similarly, all of these need to be run for running the ITs either individually o
Run the following commands from the root of the repo to start all the docker containers that the tests depend on. Run the following commands from the root of the repo to start all the docker containers that the tests depend on.
```bash ```bash
docker-compose -f ./sdk-tests/deploy/local-test.yml up -d docker compose -f ./sdk-tests/deploy/local-test.yml up -d
``` ```
To stop the containers and services, run the following commands. To stop the containers and services, run the following commands.
```bash ```bash
docker-compose -f ./sdk-tests/deploy/local-test.yml down docker compose -f ./sdk-tests/deploy/local-test.yml down
``` ```

View File

@ -59,12 +59,11 @@ Before getting into the application code, follow these steps in order to set up
<!-- STEP <!-- STEP
name: Setup kafka container name: Setup kafka container
expected_stderr_lines: expected_stderr_lines:
- 'Creating network "http_default" with the default driver'
sleep: 20 sleep: 20
--> -->
```bash ```bash
docker-compose -f ./src/main/java/io/dapr/examples/bindings/http/docker-compose-single-kafka.yml up -d docker compose -f ./src/main/java/io/dapr/examples/bindings/http/docker-compose-single-kafka.yml up -d
``` ```
<!-- END_STEP --> <!-- END_STEP -->
@ -248,7 +247,7 @@ name: Cleanup Kafka containers
--> -->
```bash ```bash
docker-compose -f ./src/main/java/io/dapr/examples/bindings/http/docker-compose-single-kafka.yml down docker compose -f ./src/main/java/io/dapr/examples/bindings/http/docker-compose-single-kafka.yml down
``` ```
<!-- END_STEP --> <!-- END_STEP -->

View File

@ -44,7 +44,7 @@ sleep: 5
--> -->
```bash ```bash
docker-compose -f ./src/main/java/io/dapr/examples/querystate/docker-compose-single-mongo.yml up -d docker compose -f ./src/main/java/io/dapr/examples/querystate/docker-compose-single-mongo.yml up -d
``` ```
<!-- END_STEP --> <!-- END_STEP -->
@ -305,7 +305,7 @@ name: Cleanup MongoDB containers
--> -->
```bash ```bash
docker-compose -f ./src/main/java/io/dapr/examples/querystate/docker-compose-single-mongo.yml down docker compose -f ./src/main/java/io/dapr/examples/querystate/docker-compose-single-mongo.yml down
``` ```
<!-- END_STEP --> <!-- END_STEP -->

View File

@ -44,7 +44,7 @@ sleep: 5
--> -->
```bash ```bash
docker-compose -f ./src/main/java/io/dapr/examples/state/docker-compose-single-mongo.yml up -d docker compose -f ./src/main/java/io/dapr/examples/state/docker-compose-single-mongo.yml up -d
``` ```
<!-- END_STEP --> <!-- END_STEP -->
@ -227,7 +227,7 @@ name: Cleanup MongoDB container
--> -->
```bash ```bash
docker-compose -f ./src/main/java/io/dapr/examples/state/docker-compose-single-mongo.yml down docker compose -f ./src/main/java/io/dapr/examples/state/docker-compose-single-mongo.yml down
``` ```
<!-- END_STEP --> <!-- END_STEP -->