diff options
author | 2018-05-31 12:29:45 +0200 | |
---|---|---|
committer | 2018-05-31 12:29:45 +0200 | |
commit | 6807b36127c49255f0330c2611eb0980175db37f (patch) | |
tree | 560977bff6b202c3eac899f573ca0b32e31ed92a | |
parent | attempt running on xenial in travis (diff) |
figure out why protobuf is missing after install
-rw-r--r-- | scripts/ci.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/ci.sh b/scripts/ci.sh index f30f8b4..13911da 100644 --- a/scripts/ci.sh +++ b/scripts/ci.sh @@ -1,6 +1,10 @@ #!/bin/bash +echo $path chmod +x binaries/nsjail2.6-ubuntu-x86_64 sudo apt-get -qq update sudo apt-get install -y libprotobuf-dev +sudo apt-get install -y libstdc++6 +sudo updatedb +sudo locate libprotobuf echo $(pwd)/binaries/nsjail2.6-ubuntu-x86_64 -Mo --rlimit_as 700 --chroot / -E LANG=en_US.UTF-8 -R/usr -R/lib -R/lib64 --user nobody --group nogroup --time_limit 2 --disable_proc --iface_no_lo --quiet -- /usr/bin/python3.6 -ISq -c 'print("test")' $(pwd)/binaries/nsjail2.6-ubuntu-x86_64 -Mo --rlimit_as 700 --chroot / -E LANG=en_US.UTF-8 -R/usr -R/lib -R/lib64 --user nobody --group nogroup --time_limit 2 --disable_proc --iface_no_lo --quiet -- /usr/bin/python3.6 -ISq -c 'print("test")' |