You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo mysql -u root -proot -e 'CREATE USER "rounduptest"@"localhost" IDENTIFIED WITH mysql_native_password BY "rounduptest"; GRANT ALL on rounduptest.* TO "rounduptest"@"localhost";'
73
79
74
80
- name: Install postgres
@@ -77,7 +83,7 @@ jobs:
77
83
# Disable fsync for speed, don't care about data durability
78
84
# when testing
79
85
sudo sed -i -e '$a\fsync = off' /etc/postgresql/*/*/postgresql.conf
80
-
sudo service postgresql restart; sleep 30
86
+
sudo service postgresql restart; sleep 10
81
87
# set up postgresql database
82
88
sudo -u postgres psql -c "CREATE ROLE rounduptest WITH CREATEDB LOGIN PASSWORD 'rounduptest';" -U postgres
83
89
@@ -89,7 +95,7 @@ jobs:
89
95
- name: Update pip
90
96
run: python -m pip install --upgrade pip
91
97
92
-
- name: Install db libraries
98
+
- name: Install python db libraries
93
99
run: pip install psycopg2 mysqlclient
94
100
95
101
- name: Install auxiliary packages
@@ -110,7 +116,6 @@ jobs:
110
116
pip install Markdown; fi
111
117
112
118
- name: Install xapian
113
-
continue-on-error: true
114
119
run: |
115
120
sudo apt-get install libxapian-dev
116
121
# Sphinx required to build the xapian python bindings. Use 1.8.5 on
0 commit comments