Skip to content

Commit

Permalink
Skip cloud examples for now
Browse files Browse the repository at this point in the history
I think we need to do a token per matrix version so that they aren't fighting each other.
  • Loading branch information
jnunemaker committed Dec 1, 2022
1 parent 63b69ae commit 08099da
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions script/examples
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ set -e
# Run all examples individually
for example in examples/**/*.rb; do
# Skip examples that have setup in name
if echo $example | grep -vq "setup"; then
# Skip examples with a loop for now
if ! grep -q "loop do" "$example"; then
echo "\n\n>>> START: $example"
ruby $example
echo ">>> FINISH: $example"
fi
echo $example | grep -q "setup" && continue;
# Skip examples that have cloud in name
echo $example | grep -q "cloud" && continue;

# Skip examples with a loop for now
if ! grep -q "loop do" "$example"; then
echo "\n\n>>> START: $example"
ruby $example
echo ">>> FINISH: $example"
fi
done

0 comments on commit 08099da

Please sign in to comment.