Skip to content

Commit

Permalink
meta-aws-tests.sh: disable building of aws-cli-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-roos authored Feb 27, 2024
1 parent 5880217 commit 1ffaeeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meta-aws-tests/meta-aws-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ for RELEASE in $RELEASES ; do
# setup build/local.conf
setup_config

# find all recipes in meta-aws or use package
ALL_RECIPES=${PACKAGE-`find ../meta-aws -name *.bb -type f | sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z 's/\n/ /g'`}

# those tests are known to not work with others etc.
THINGS_TO_EXCLUDE="-name aws-cli-v2"

# find all recipes in meta-aws or use package
ALL_RECIPES=${PACKAGE-`find ../meta-aws -name *.bb -type f ! \( ${THINGS_TO_EXCLUDE} \) | sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z 's/\n/ /g'`}

# find all recipes having a ptest in meta-aws
ptest_recipes=${PACKAGE-`find ../meta-aws -name *.bb -type f ! \( ${THINGS_TO_EXCLUDE} \) -print | xargs grep -l 'inherit.*ptest.*'| sed 's!.*/!!' | sed 's!.bb!!' | sed 's!_.*!!' | sort | uniq | sed -z 's/\n/ /g'`}

Expand Down

0 comments on commit 1ffaeeb

Please sign in to comment.