The "sudo pip install" command cause some error when deploying
compass. So replace the "sudo pip install" with the "python -m
pip install pyyaml" command.
Signed-off-by: Jingzhao.Ni <Jingzhao.Ni@arm.com>
Change-Id: Ia86e5a8b1c75e6367d044e94e356f7d1a855418e
cd compass4nfv
COMPASS_WORK_DIR=$WORKSPACE/../compass-work
+
mkdir -p $COMPASS_WORK_DIR
ln -s $COMPASS_WORK_DIR work
curl -s http://people.linaro.org/~yibo.cai/compass/compass4nfv-arm64-fixup.sh | bash || true
+sed -i "s/sudo pip install pyyaml/python -m pip install pyyaml --user/g" build.sh
+
./build.sh
exit 0