Files
csharp/ci.sh

19 lines
314 B
Bash
Raw Normal View History

2017-07-16 22:09:26 +02:00
#!/usr/bin/env bash
# Exit on any error
set -e
# Ensure no compile errors in all projects
find . -name *.csproj -exec dotnet build {} \;
2018-05-07 20:53:15 +02:00
# Create the NuGet package
cd src/KubernetesClient/
dotnet pack -c Release
cd ../..
2017-07-16 22:09:26 +02:00
# Execute Unit tests
cd tests/KubernetesClient.Tests
dotnet restore
dotnet test
2018-05-07 20:53:15 +02:00
cd ../..