File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,16 @@ after_success:
1313- coveralls
1414before_script :
1515- mkdir $HOME/.process_tracker
16- - mv configs/${database_type }_config.ini $HOME/.process_tracker/process_tracker_config.ini
17- - sh -c "if [ '$DB' == 'postgresq ' ]; then psql -f dbscripts/postgresql_account_create.sql -U postgres; fi"
18- - sh -c "if [ '$DB' == 'postgresq ' ]; then psql -f dbscripts/postgresql_process_tracker.sql process_tracking -U postgres; fi"
19- - sh -c "if [ '$DB' == 'postgresq ' ]; then psql -f dbscripts/postgresqlpostgresql_process_tracker_defaults.sql_process_tracker_defaults.sql process_tracking -U postgres; fi"
16+ - mv configs/${DB }_config.ini $HOME/.process_tracker/process_tracker_config.ini
17+ - sh -c "if [ '$DB' == 'postgres ' ]; then psql -f dbscripts/postgresql_account_create.sql -U postgres; fi"
18+ - sh -c "if [ '$DB' == 'postgres ' ]; then psql -f dbscripts/postgresql_process_tracker.sql process_tracking -U postgres; fi"
19+ - sh -c "if [ '$DB' == 'postgres ' ]; then psql -f dbscripts/postgresqlpostgresql_process_tracker_defaults.sql_process_tracker_defaults.sql process_tracking -U postgres; fi"
2020- sh -c "if [ '$DB' == 'mysql' ]; then mysql -u root < dbscripts/mysql_account_create.sql; fi"
2121- sh -c "if [ '$DB' == 'mysql' ]; then mysql -u root < dbscripts/mysql_process_tracker.sql; fi"
2222- sh -c "if [ '$DB' == 'mysql' ]; then mysql -u root < dbscripts/mysql_process_tracker_defaults.sql; fi"
2323env :
24- - DB=postgres database_type=postgresql
25- - DB=mysql database_type=mysql
24+ - DB=postgres
25+ - DB=mysql
2626deploy :
2727 - provider : releases
2828 api_key :
File renamed without changes.
Original file line number Diff line number Diff line change 11drop database if exists process_tracker;
22create database process_tracker ;
3- create user pt_admin identified by ' Testing1!' ;
3+ create user pt_admin @ ' % ' identified by ' Testing1!' ;
44grant all privileges on process_tracker.* to pt_admin;
You can’t perform that action at this time.
0 commit comments