[AAE-7986] Migrate ADF from Travis to Github actions (#8050)

* rebased

* [ci:force]
This commit is contained in:
Marco Carrozzo
2022-12-15 10:27:04 +01:00
committed by GitHub
parent 812352ecdc
commit 70e6d642f3
23 changed files with 933 additions and 53 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
echo "Start e2e"
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR/../../../
@@ -9,7 +9,7 @@ BASE_DIRECTORY=$(echo "$FOLDER" | cut -d "/" -f1)
verifyLib=$1;
# set test-e2e params
if [ ! -z "$2" ]; then
if [ -n "$2" ]; then
e2eParams="--$2"
else
e2eParams=""
@@ -17,7 +17,8 @@ fi
echo "Step1 - Verify if affected libs contains $verifyLib"
AFFECTED_LIB="$(./scripts/travis/affected-contains.sh $verifyLib )";
AFFECTED_LIB=$(./scripts/travis/affected-contains.sh $verifyLib )
if [ ${AFFECTED_LIB} == true ]; then
echo "Step2 - $verifyLib affected... will execute e2e"