features/test/dotnet/build_dotnet_7.sh

14 lines
215 B
Bash
Raw Normal View History

2023-03-01 11:29:45 +03:00
#!/bin/bash
set -e
source dev-container-features-test-lib
2023-03-01 22:19:02 +03:00
check "non-root user" test "$(id -u)" -ne 0
2023-03-01 11:29:45 +03:00
pushd example_project
check "dotnet restore" dotnet restore
check "dotnet build" dotnet build
2023-03-01 20:20:17 +03:00
reportResults