2021-03-12 08:39:52 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-03-15 05:47:19 +00:00
|
|
|
set -e
|
|
|
|
|
2021-03-12 08:39:52 +00:00
|
|
|
cd ~ || exit
|
|
|
|
|
2022-06-02 06:57:11 +00:00
|
|
|
sudo apt update && sudo apt install redis-server libcups2-dev
|
2021-03-12 08:39:52 +00:00
|
|
|
|
|
|
|
pip install frappe-bench
|
|
|
|
|
2022-02-03 12:00:42 +00:00
|
|
|
frappeuser=${FRAPPE_USER:-"frappe"}
|
|
|
|
frappebranch=${FRAPPE_BRANCH:-${GITHUB_BASE_REF:-${GITHUB_REF##*/}}}
|
|
|
|
|
|
|
|
git clone "https://github.com/${frappeuser}/frappe" --branch "${frappebranch}" --depth 1
|
2021-03-12 08:39:52 +00:00
|
|
|
bench init --skip-assets --frappe-path ~/frappe --python "$(which python)" frappe-bench
|
|
|
|
|
|
|
|
mkdir ~/frappe-bench/sites/test_site
|
|
|
|
|
2022-01-02 18:03:10 +00:00
|
|
|
if [ "$DB" == "mariadb" ];then
|
|
|
|
cp -r "${GITHUB_WORKSPACE}/.github/helper/site_config_mariadb.json" ~/frappe-bench/sites/test_site/site_config.json
|
|
|
|
else
|
|
|
|
cp -r "${GITHUB_WORKSPACE}/.github/helper/site_config_postgres.json" ~/frappe-bench/sites/test_site/site_config.json
|
|
|
|
fi
|
2021-03-12 08:39:52 +00:00
|
|
|
|
|
|
|
|
2022-01-02 18:03:10 +00:00
|
|
|
if [ "$DB" == "mariadb" ];then
|
|
|
|
mysql --host 127.0.0.1 --port 3306 -u root -e "SET GLOBAL character_set_server = 'utf8mb4'"
|
|
|
|
mysql --host 127.0.0.1 --port 3306 -u root -e "SET GLOBAL collation_server = 'utf8mb4_unicode_ci'"
|
|
|
|
|
|
|
|
mysql --host 127.0.0.1 --port 3306 -u root -e "CREATE USER 'test_frappe'@'localhost' IDENTIFIED BY 'test_frappe'"
|
|
|
|
mysql --host 127.0.0.1 --port 3306 -u root -e "CREATE DATABASE test_frappe"
|
|
|
|
mysql --host 127.0.0.1 --port 3306 -u root -e "GRANT ALL PRIVILEGES ON \`test_frappe\`.* TO 'test_frappe'@'localhost'"
|
|
|
|
|
|
|
|
mysql --host 127.0.0.1 --port 3306 -u root -e "UPDATE mysql.user SET Password=PASSWORD('travis') WHERE User='root'"
|
|
|
|
mysql --host 127.0.0.1 --port 3306 -u root -e "FLUSH PRIVILEGES"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$DB" == "postgres" ];then
|
|
|
|
echo "travis" | psql -h 127.0.0.1 -p 5432 -c "CREATE DATABASE test_frappe" -U postgres;
|
|
|
|
echo "travis" | psql -h 127.0.0.1 -p 5432 -c "CREATE USER test_frappe WITH PASSWORD 'test_frappe'" -U postgres;
|
|
|
|
fi
|
2021-03-12 08:39:52 +00:00
|
|
|
|
2022-02-17 09:52:36 +00:00
|
|
|
|
|
|
|
install_whktml() {
|
|
|
|
wget -O /tmp/wkhtmltox.tar.xz https://github.com/frappe/wkhtmltopdf/raw/master/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
|
|
|
|
tar -xf /tmp/wkhtmltox.tar.xz -C /tmp
|
|
|
|
sudo mv /tmp/wkhtmltox/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf
|
|
|
|
sudo chmod o+x /usr/local/bin/wkhtmltopdf
|
|
|
|
}
|
|
|
|
install_whktml &
|
2021-03-12 08:39:52 +00:00
|
|
|
|
|
|
|
cd ~/frappe-bench || exit
|
|
|
|
|
|
|
|
sed -i 's/watch:/# watch:/g' Procfile
|
|
|
|
sed -i 's/schedule:/# schedule:/g' Procfile
|
|
|
|
sed -i 's/socketio:/# socketio:/g' Procfile
|
|
|
|
sed -i 's/redis_socketio:/# redis_socketio:/g' Procfile
|
|
|
|
|
2022-07-25 05:26:04 +00:00
|
|
|
bench get-app payments
|
2021-03-12 08:39:52 +00:00
|
|
|
bench get-app erpnext "${GITHUB_WORKSPACE}"
|
2021-10-20 09:13:39 +00:00
|
|
|
|
|
|
|
if [ "$TYPE" == "server" ]; then bench setup requirements --dev; fi
|
|
|
|
|
2021-07-02 17:05:15 +00:00
|
|
|
bench start &> bench_run_logs.txt &
|
2022-02-17 09:52:36 +00:00
|
|
|
CI=Yes bench build --app frappe &
|
2021-03-17 14:33:54 +00:00
|
|
|
bench --site test_site reinstall --yes
|