mirror of https://github.com/dapr/quickstarts.git
Merge pull request #667 from amulyavarote/validation_failure_fix
Testing the worlflow
This commit is contained in:
commit
3aea5f8ed5
|
@ -85,7 +85,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
brew install kubernetes-cli || brew link --overwrite kubernetes-cli
|
brew install kubernetes-cli || brew link --overwrite kubernetes-cli
|
||||||
brew install minikube
|
brew install minikube
|
||||||
minikube start --driver=virtualbox --memory 4096 --host-only-cidr "192.168.59.1/24"
|
minikube start --driver=virtualbox --memory 8192 --host-only-cidr "192.168.59.1/24"
|
||||||
- name: Get KinD info
|
- name: Get KinD info
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
|
@ -142,31 +142,37 @@ jobs:
|
||||||
make validate
|
make validate
|
||||||
popd
|
popd
|
||||||
- name: Validate hello-kubernetes
|
- name: Validate hello-kubernetes
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
pushd tutorials/hello-kubernetes
|
pushd tutorials/hello-kubernetes
|
||||||
make validate
|
make validate
|
||||||
popd
|
popd
|
||||||
- name: Validate distributed-calculator
|
- name: Validate distributed-calculator
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
pushd tutorials/distributed-calculator
|
pushd tutorials/distributed-calculator
|
||||||
make validate
|
make validate
|
||||||
popd
|
popd
|
||||||
- name: Validate pub-sub
|
- name: Validate pub-sub
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
pushd tutorials/pub-sub
|
pushd tutorials/pub-sub
|
||||||
make validate
|
make validate
|
||||||
popd
|
popd
|
||||||
- name: Validate bindings
|
- name: Validate bindings
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
pushd tutorials/bindings
|
pushd tutorials/bindings
|
||||||
make validate
|
make validate
|
||||||
popd
|
popd
|
||||||
- name: Validate secretstore
|
- name: Validate secretstore
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
pushd tutorials/secretstore
|
pushd tutorials/secretstore
|
||||||
make validate
|
make validate
|
||||||
popd
|
popd
|
||||||
- name: Validate observability
|
- name: Validate observability
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
pushd tutorials/observability
|
pushd tutorials/observability
|
||||||
make validate
|
make validate
|
||||||
|
|
Loading…
Reference in New Issue