occlum/demos/bash/run_bash_demo.sh
2023-11-07 09:26:20 +08:00

28 lines
661 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 = "1MB" |
.resource_limits.user_space_max_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