restrict what gets checked and implement sending of fragmented packets
This commit is contained in:
parent
29a8b015bd
commit
9275f3b09f
6 changed files with 85 additions and 46 deletions
11
check-all.sh
11
check-all.sh
|
|
@ -2,9 +2,12 @@
|
|||
|
||||
set -euo pipefail
|
||||
|
||||
SETTINGS=$(yq ea "." editions.yaml | yq 'keys[]')
|
||||
EDITIONS=$(yq ea "." editions.yaml | yq 'keys[]')
|
||||
IFS=$'\n'
|
||||
while IFS=$'\n' read -r EDITION; do
|
||||
export EDITION
|
||||
./check-edition.sh $EDITION
|
||||
done <<< "$SETTINGS"
|
||||
if [[ $(yq ea ".$EDITION.include-in-checkall" editions.yaml) == "true" ]]
|
||||
then
|
||||
export EDITION
|
||||
./check-edition.sh $EDITION
|
||||
fi
|
||||
done <<< "$EDITIONS"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue