occlum/demos/bash/run_bash_demo.sh
2021-12-14 10:58:09 +08:00

27 lines
598 B
Bash
Executable File

#! /bin/bash
set -e
if [[ $1 == "musl" ]]; then
echo "*** Run musl-libc bash demo ***"
bomfile="../bash-musl.yaml"
else
echo "*** Run glibc bash demo ***"
bomfile="../bash.yaml"
fi
rm -rf occlum_instance
occlum new occlum_instance
pushd occlum_instance
rm -rf image
copy_bom -f $bomfile --root image --include-dir /opt/occlum/etc/template
new_json="$(jq '.resource_limits.user_space_size = "600MB" |
.resource_limits.kernel_space_stack_size ="2MB" ' Occlum.json)" && \
echo "${new_json}" > Occlum.json
occlum build
occlum run /bin/occlum_bash_test.sh
popd