Skip to content

Commit

Permalink
Rename .bamboo folder to .ci folder
Browse files Browse the repository at this point in the history
  • Loading branch information
TheZoker committed Sep 13, 2023
1 parent f74221c commit f9b9614
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions .bamboo/E2E-tests/execute.sh → .ci/E2E-tests/execute.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ DB=$1

if [ "$DB" = "mysql" ]; then
COMPOSE_FILE="cypress-E2E-tests-mysql.yml"
elif [ "$DB" = "postgresql" ]; then
elif [ "$DB" = "postgres" ]; then
COMPOSE_FILE="cypress-E2E-tests-postgres.yml"
else
echo "Invalid database type. Please choose either mysql or postgresql."
echo "Invalid database type. Please choose either mysql or postgres."
exit 1
fi

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ DB=$1

if [ "$DB" = "mysql" ]; then
COMPOSE_FILE="artemis-migration-check-mysql.yml"
elif [ "$DB" = "postgresql" ]; then
elif [ "$DB" = "postgres" ]; then
COMPOSE_FILE="artemis-migration-check-postgres.yml"
else
echo "Invalid database type. Please choose either mysql or postgresql."
echo "Invalid database type. Please choose either mysql or postgres."
exit 1
fi

Expand Down

0 comments on commit f9b9614

Please sign in to comment.