Skip to content

Commit

Permalink
exclude benchmark from oss fuzz vcpkg deps
Browse files Browse the repository at this point in the history
Signed-off-by: Mikhail Boldyrev <miboldyrev@gmail.com>
  • Loading branch information
MBoldyrev committed Feb 11, 2020
1 parent 60ee099 commit 1063815
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions vcpkg/oss/VCPKG_SKIP_DEPS
@@ -0,0 +1,2 @@
benchmark
grpc
2 changes: 1 addition & 1 deletion vcpkg/oss/build_deps.sh
Expand Up @@ -19,7 +19,7 @@ git -C /tmp/vcpkg apply /tmp/vcpkg-vars/oss/patches/0002-vcpkg-dependencies-flag

git -C /tmp/vcpkg apply /tmp/vcpkg-vars/oss/patches/0003-vcpkg-dependencies-sanitizer.patch;

cat /tmp/vcpkg-vars/VCPKG_DEPS_LIST | sed '/^grpc$/d' | xargs /tmp/vcpkg/vcpkg install;
comm -23 <(sort /tmp/vcpkg-vars/VCPKG_DEPS_LIST) <(sort /tmp/vcpkg-vars/oss/VCPKG_SKIP_DEPS) | xargs /tmp/vcpkg/vcpkg install;

function bumper { while sleep 1; do echo bump; done; };
function run_with_bumper { bumper & p=$!; $@; kill $p; };
Expand Down

0 comments on commit 1063815

Please sign in to comment.