Files
csharp/integration-tests.sh
Frederik Carlier cf1c9950a0 Run integration tests as part of CI (after #129) (#131)
* Run CI scripts on both Mac and Linux

* Fix AuthTests for macOS

* Use SocketsHttpHandler

* Install minikube on the Travis CI servers

* Add integration tests

* Fix an issue where StreamConnectAsync would crash if the credentials were not set
2018-03-30 22:32:14 -07:00

21 lines
338 B
Bash
Executable File

#!/bin/sh
cd examples
echo 'Creating a nginx pod in the default namespace'
kubectl create -f nginx.yml
echo 'Running the simple example'
cd simple
dotnet run
echo 'Running the exec example'
cd ../exec
dotnet run
echo 'Running the labels example'
cd ../labels
dotnet run
echo 'Running the namespace example'
cd ../namespace
dotnet run