Skip to content

Commit

Permalink
ci: Fix wasm verify example (envoyproxy#17086)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax authored and Le Yao committed Sep 30, 2021
1 parent c7b41e7 commit 754131f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/verify_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ run_examples () {
local examples example
cd "${SRCDIR}/examples" || exit 1

examples=$(find . -mindepth 1 -maxdepth 1 -type d -name "$TESTFILTER" ! -iname "_*" | grep -Ev "$TESTEXCLUDES" | sort)
examples=$(find . -mindepth 1 -maxdepth 1 -type d -name "$TESTFILTER" ! -iname "_*" | sort)
if [[ -n "$TESTEXCLUDES" ]]; then
examples=$(echo "$examples" | grep -Ev "$TESTEXCLUDES")
fi
for example in $examples; do
pushd "$example" > /dev/null || return 1
./verify.sh
Expand Down

0 comments on commit 754131f

Please sign in to comment.