Hi all,
I'm interested on run few commands to setup a database on a bamboo instance before run the tests of my application.
I tried setting up an script in the tasks section of a Plan, but I received an error (seems that these scripts run with no tty)
Is there any way to install these packages (php-pdo, mysql-client, some pear packages,...) before start the test suit? Any other suggestion?
Thanks,
We use the following instance setup script (you can paste it via Administration->Image Configuration->Edit) to run Bamboo EC2 tests on MySQL:
#!/bin/sh
export PATH=/sbin:/bin:/usr/sbin:/usr/bin
install()
{
yum install -y mysql-server
service mysqld start
/usr/bin/mysqladmin -u root password ''
cat >> /home/bamboo/bamboo-capabilities.properties << EOF
custom.database.type = MySQL
EOF
}
install >/tmp/startup.log 2>&1
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.