[no-issue] Parallel run e2e and e2e common action refactoring (#4702)

This commit is contained in:
Eugenio Romano
2019-05-13 04:44:35 +02:00
committed by GitHub
parent a48bfc3714
commit 898e3b5a80
288 changed files with 8704 additions and 5130 deletions

63
scripts/i18n/extract-langs.sh Executable file
View File

@@ -0,0 +1,63 @@
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
LANGS_OUTPUT="./i18n"
output_folder(){
if [ $1 -eq 0 ]; then
echo "No arguments supplied. Default path for output will be used ./i18n"
else
LANGS_OUTPUT="$1"
fi
}
show_help() {
echo "Usage: extract-langs.sh Extract the i18n files from the repo and create a zip"
echo ""
echo "--output or -o to specify a folder otherwise it will be created in i18n"
}
while [[ $1 == -* ]]; do
case "$1" in
-h|--help|-\?) show_help; exit 0;;
--output|-o) output_folder $2; shift;;
esac
done
COMPONENTS_ROOT="$DIR/../lib"
# Find all directories in $COMPONENTS_ROOT called i18n and add the demo-shell manually
COMPONENTS=(`find $COMPONENTS_ROOT -type d -name i18n -not \( -name '*.*' -o -path '**/node_modules*' -o -path '**/bundles*' \)`)
COMPONENTS+=("$DIR/../demo-shell/resources/i18n")
# Loop the individual components
for COMPONENT_DIR in "${COMPONENTS[@]}"
do :
echo "Processing $COMPONENT_DIR"
# Grab *.json in the components i18n dir
FILES=(`find $COMPONENT_DIR -type f -name "*.json"`)
# Loop each i18n file
for i in "${FILES[@]}"
do :
# Match the filename and extension into two groups so we can use the name as a folder for the output folder
if [[ $i =~ /([a-zA-Z0-9_-]*)(\.json)$ ]] ; then
TMP=${BASH_REMATCH[1]} # Will contain "en", "it", "ru" etc. without .json
LANG=`echo "$TMP" | tr '[:lower:]' '[:upper:]'` # Conver to upper case
# Build the output path, ensure it exists then copy the file
DEST="$LANGS_OUTPUT/$LANG/${COMPONENT_DIR#${DIR}/../}"
echo "Copying $i to $DEST"
`mkdir -p $DEST`
`cp $i $DEST`
fi
done
done
echo "====== Create a zip ======"
zip -r ${LANGS_OUTPUT}/i18n.zip ./${LANGS_OUTPUT}/*

46
scripts/i18n/import-langs.sh Executable file
View File

@@ -0,0 +1,46 @@
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
LANG_ROOT="./i18n"
show_help() {
echo "Usage: import-langs.sh --input NAME_FOLDER import the i18n files from a folder"
echo ""
echo "--input or -i to specify a folder where import the new files. (default value i18n)"
}
input_folder(){
if [ $1 -eq 0 ]; then
echo "No arguments supplied. Default path for output will be used ./i18n"
else
LANG_ROOT="$1"
fi
}
while [[ $1 == -* ]]; do
case "$1" in
-h|--help|-\?) show_help; exit 0;;
--input|-i) input_folder $2; shift;;
esac
done
COMPONENTS_ROOT="$DIR/../"
# Findn all JSON files
FILES=(`find $LANG_ROOT -type f -name "*.json"`)
# Loop the individual components
for FILE in "${FILES[@]}"
do :
echo "Processing $FILE"
# Match the language so we can get to the actual destination
if [[ $FILE =~ /[A-Z0-0_-]+/(.+)$ ]] ; then
DEST=${BASH_REMATCH[1]} # Will contain the full file path
echo "\tCopying $FILE to $COMPONENTS_ROOT/$DEST"
`cp $FILE $COMPONENTS_ROOT/$DEST`
fi
echo ""
done