Skip to content

Commit

Permalink
Missing dependencies fix (#19052)
Browse files Browse the repository at this point in the history
* ignore dependencies of packs from other MP

* test pack

* fix dependencies

* fix random dependencies

* debug logs

* change

* test change

* remove failing pack

* d

* test change

* remove testing

* remove testing files

* add removed pack

* add removed pack

* lint
  • Loading branch information
Noy-Maimon authored May 18, 2022
1 parent ac7a865 commit ac93a0c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions trigger_test_upload_flow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,17 +102,17 @@ if [ -n "$_force" ] && [ -n "$_storage_base_path"]; then
echo "Can not force upload while using a storage base path."
exit 1
fi
#if [[ -n "$_storage_base_path" ]] && [ "$_storage_base_path" != *content ]; then
# echo "$_storage_base_path"
# echo "The given storage base path should look like upload-flow/builds/branch_name/build_number/content."
# exit 1
#fi
#
#if [[ -n "$_storage_base_path" ]] && [ "$_storage_base_path" != upload-flow* ]; then
# echo $_storage_base_path
# echo "The given storage base path should look like upload-flow/builds/branch_name/build_number/content."
# exit 1
#fi
if [ -n "$_storage_base_path" ] && [[ "$_storage_base_path" != *content ]]; then
echo "$_storage_base_path"
echo "The given storage base path should look like upload-flow/builds/branch_name/build_number/content.1"
exit 1
fi

if [ -n "$_storage_base_path" ] && [[ "$_storage_base_path" != upload-flow* ]]; then
echo $_storage_base_path
echo "The given storage base path should look like upload-flow/builds/branch_name/build_number/content.2"
exit 1
fi

if [ -n "$_gitlab" ]; then

Expand Down

0 comments on commit ac93a0c

Please sign in to comment.