occlum/demos/netty_ut/build.sh
2023-03-29 09:31:20 +08:00

11 lines
192 B
Bash
Executable File

#!/bin/bash
set -e
# Download netty testsuite, junit platform and related dependencies
if [ ! -d "netty" ]; then
wget -i ./ut-jar.url -P ./netty
fi
echo "Build Netty unit test success"