Skip to content

Commit

Permalink
text(ci): fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pschuele committed Feb 19, 2025
1 parent 557ae1f commit 64722fe
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions ci/gitlab-ci/lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@
}
test_prepare_global_configs() {
log "prepareing global configs ..."
log "Preparing global configs ..."
rm /etc/supervisor.d/worker.ini || true
rm /etc/crontabs/tine20 || true
gomplate --config /etc/gomplate/config.yaml
Expand All @@ -870,7 +870,7 @@
}
test_prepare_mail_db() {
log "prepareing databases for mail setup ..."
log "Preparing databases for mail setup ..."
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"SET GLOBAL wait_timeout=31536000; SET GLOBAL interactive_timeout=31536000"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS dovecot"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS postfix"
Expand Down Expand Up @@ -948,7 +948,7 @@
test_phpunit() {
log "prepareing test .."
log "Preparing test .."
if [ -f ${TINE20ROOT}/scripts/postInstallGitlab.sh ]; then
${TINE20ROOT}/scripts/postInstallGitlab.sh
fi
Expand Down Expand Up @@ -1896,7 +1896,7 @@
}
test_prepare_global_configs() {
log "prepareing global configs ..."
log "Preparing global configs ..."
rm /etc/supervisor.d/worker.ini || true
rm /etc/crontabs/tine20 || true
gomplate --config /etc/gomplate/config.yaml
Expand All @@ -1907,7 +1907,7 @@
}
test_prepare_mail_db() {
log "prepareing databases for mail setup ..."
log "Preparing databases for mail setup ..."
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"SET GLOBAL wait_timeout=31536000; SET GLOBAL interactive_timeout=31536000"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS dovecot"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS postfix"
Expand Down Expand Up @@ -1985,7 +1985,7 @@
test_phpunit() {
log "prepareing test .."
log "Preparing test .."
if [ -f ${TINE20ROOT}/scripts/postInstallGitlab.sh ]; then
${TINE20ROOT}/scripts/postInstallGitlab.sh
fi
Expand Down Expand Up @@ -2943,7 +2943,7 @@
}
test_prepare_global_configs() {
log "prepareing global configs ..."
log "Preparing global configs ..."
rm /etc/supervisor.d/worker.ini || true
rm /etc/crontabs/tine20 || true
gomplate --config /etc/gomplate/config.yaml
Expand All @@ -2954,7 +2954,7 @@
}
test_prepare_mail_db() {
log "prepareing databases for mail setup ..."
log "Preparing databases for mail setup ..."
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"SET GLOBAL wait_timeout=31536000; SET GLOBAL interactive_timeout=31536000"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS dovecot"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS postfix"
Expand Down Expand Up @@ -3032,7 +3032,7 @@
test_phpunit() {
log "prepareing test .."
log "Preparing test .."
if [ -f ${TINE20ROOT}/scripts/postInstallGitlab.sh ]; then
${TINE20ROOT}/scripts/postInstallGitlab.sh
fi
Expand Down Expand Up @@ -4026,7 +4026,7 @@
}
test_prepare_global_configs() {
log "prepareing global configs ..."
log "Preparing global configs ..."
rm /etc/supervisor.d/worker.ini || true
rm /etc/crontabs/tine20 || true
gomplate --config /etc/gomplate/config.yaml
Expand All @@ -4037,7 +4037,7 @@
}
test_prepare_mail_db() {
log "prepareing databases for mail setup ..."
log "Preparing databases for mail setup ..."
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"SET GLOBAL wait_timeout=31536000; SET GLOBAL interactive_timeout=31536000"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS dovecot"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS postfix"
Expand Down Expand Up @@ -4115,7 +4115,7 @@
test_phpunit() {
log "prepareing test .."
log "Preparing test .."
if [ -f ${TINE20ROOT}/scripts/postInstallGitlab.sh ]; then
${TINE20ROOT}/scripts/postInstallGitlab.sh
fi
Expand Down
6 changes: 3 additions & 3 deletions ci/gitlab-ci/lib/scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ test_prepare_working_dir() {
}

test_prepare_global_configs() {
log "prepareing global configs ..."
log "Preparing global configs ..."
rm /etc/supervisor.d/worker.ini || true
rm /etc/crontabs/tine20 || true
gomplate --config /etc/gomplate/config.yaml
Expand All @@ -60,7 +60,7 @@ test_prepare_global_configs() {
}

test_prepare_mail_db() {
log "prepareing databases for mail setup ..."
log "Preparing databases for mail setup ..."
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"SET GLOBAL wait_timeout=31536000; SET GLOBAL interactive_timeout=31536000"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS dovecot"
mysql -h$MAIL_DB_HOST -uroot -p"$MYSQL_ROOT_PASSWORD" -e"CREATE DATABASE IF NOT EXISTS postfix"
Expand Down Expand Up @@ -138,7 +138,7 @@ test_npm_install() {


test_phpunit() {
log "prepareing test .."
log "Preparing test .."
if [ -f ${TINE20ROOT}/scripts/postInstallGitlab.sh ]; then
${TINE20ROOT}/scripts/postInstallGitlab.sh
fi
Expand Down

0 comments on commit 64722fe

Please sign in to comment.