mirror of https://github.com/dapr/quickstarts.git
Merge pull request #737 from amulyavarote/bindings_workflow_changes
Changes in bindings workflow
This commit is contained in:
commit
8ca5160fc7
|
@ -56,6 +56,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
java-version: 11
|
java-version: 11
|
||||||
|
- name: Install .NET Core
|
||||||
|
uses: actions/setup-dotnet@v1.9.0
|
||||||
|
with:
|
||||||
|
dotnet-version: |
|
||||||
|
6.0.x
|
||||||
- name: Determine latest Dapr Runtime version including Pre-releases
|
- name: Determine latest Dapr Runtime version including Pre-releases
|
||||||
run: |
|
run: |
|
||||||
helm repo add dapr https://dapr.github.io/helm-charts/ && helm repo update && export RUNTIME_VERSION=$(helm search repo dapr/dapr --devel --versions | awk '/dapr\/dapr/ {print $3; exit}' )
|
helm repo add dapr https://dapr.github.io/helm-charts/ && helm repo update && export RUNTIME_VERSION=$(helm search repo dapr/dapr --devel --versions | awk '/dapr\/dapr/ {print $3; exit}' )
|
||||||
|
@ -131,16 +136,16 @@ jobs:
|
||||||
pushd bindings/go/sdk
|
pushd bindings/go/sdk
|
||||||
make validate
|
make validate
|
||||||
popd
|
popd
|
||||||
# - name: Validate .NET http Bindings
|
- name: Validate .NET http Bindings
|
||||||
# run: |
|
run: |
|
||||||
# pushd bindings/csharp/http
|
pushd bindings/csharp/http
|
||||||
# make validate
|
make validate
|
||||||
# popd
|
popd
|
||||||
# - name: Validate .NET sdk Bindings
|
- name: Validate .NET sdk Bindings
|
||||||
# run: |
|
run: |
|
||||||
# pushd bindings/csharp/sdk
|
pushd bindings/csharp/sdk
|
||||||
# make validate
|
make validate
|
||||||
# popd
|
popd
|
||||||
- name: Linkcheck README.md
|
- name: Linkcheck README.md
|
||||||
run: |
|
run: |
|
||||||
make validate
|
make validate
|
||||||
|
|
|
@ -303,7 +303,7 @@ Get the API call logs of the node app:
|
||||||
|
|
||||||
<!-- STEP
|
<!-- STEP
|
||||||
expected_stdout_lines:
|
expected_stdout_lines:
|
||||||
- 'level=info msg="HTTP API Called: POST /v1.0/state/statestore"'
|
- 'level=info msg="HTTP API Called: POST /v1.0/state/statestore'
|
||||||
expected_stderr_lines:
|
expected_stderr_lines:
|
||||||
output_match_mode: substring
|
output_match_mode: substring
|
||||||
name: Read nodeapp logs
|
name: Read nodeapp logs
|
||||||
|
@ -326,7 +326,7 @@ Get the API call logs of the Python app:
|
||||||
|
|
||||||
<!-- STEP
|
<!-- STEP
|
||||||
expected_stdout_lines:
|
expected_stdout_lines:
|
||||||
- 'level=info msg="HTTP API Called: POST /neworder"'
|
- 'level=info msg="HTTP API Called: POST /neworder'
|
||||||
expected_stderr_lines:
|
expected_stderr_lines:
|
||||||
output_match_mode: substring
|
output_match_mode: substring
|
||||||
name: Read pythonapp logs
|
name: Read pythonapp logs
|
||||||
|
|
Loading…
Reference in New Issue