mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-22 19:41:08 +07:00
22 lines
576 B
Bash
Executable File
22 lines
576 B
Bash
Executable File
if [ -z "$1" ]; then
|
|
echo "Must supply dotnet version argument"
|
|
exit 1
|
|
fi
|
|
|
|
dotnet_version="$(dotnet --version)"
|
|
echo "Found dotnet version '$dotnet_version'"
|
|
if [ -z "$(echo $dotnet_version | grep $1)" ]; then
|
|
echo "Unexpected version"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Building sample csproj"
|
|
dotnet build __tests__/sample-csproj/ --no-cache || exit 1
|
|
|
|
echo "Testing compiled app"
|
|
sample_output="$(__tests__/sample-csproj/bin/Debug/netcoreapp3.0/sample)"
|
|
echo "Sample output: $sample_output"
|
|
if [ -z "$(echo $sample_output | grep Hello)" ]; then
|
|
echo "Unexpected output"
|
|
exit 1
|
|
fi |