@@ -107,8 +107,8 @@ jobs:
107107 PREPARED_STATEMENTS : ${{ matrix.prepared_statements }}
108108 PGHOST : localhost
109109 PGPORT : 5432
110- PGUSER : jruby
111- PGPASSWORD : jruby
110+ PGUSER : arjdbc
111+ PGPASSWORD : arjdbc
112112
113113 steps :
114114 - uses : actions/checkout@v4
@@ -127,9 +127,9 @@ jobs:
127127 sudo ln -s /usr/bin/diff /usr/bin/gdiff || true
128128 - name : Setup database
129129 run : |
130- PGPASSWORD=postgres psql -h localhost -U postgres -c "CREATE USER jruby WITH SUPERUSER CREATEDB LOGIN PASSWORD 'jruby ';"
131- PGPASSWORD=jruby psql -h localhost -d postgres -c "create database activerecord_unittest;" -U jruby
132- PGPASSWORD=jruby psql -h localhost -d postgres -c "create database activerecord_unittest2;" -U jruby
130+ PGPASSWORD=postgres psql -h localhost -U postgres -c "CREATE USER arjdbc WITH SUPERUSER CREATEDB LOGIN PASSWORD 'arjdbc ';"
131+ PGPASSWORD=arjdbc psql -h localhost -d postgres -c "create database activerecord_unittest;" -U arjdbc
132+ PGPASSWORD=arjdbc psql -h localhost -d postgres -c "create database activerecord_unittest2;" -U arjdbc
133133 - name : Build
134134 run : |
135135 rake jar # compiles ext generates: lib/arjdbc/jdbc/adapter_java.jar
@@ -258,8 +258,8 @@ jobs:
258258 INSERT_RETURNING : ${{ matrix.insert_returning }}
259259 PGHOST : localhost
260260 PGPORT : 5432
261- PGUSER : jruby
262- PGPASSWORD : jruby
261+ PGUSER : arjdbc
262+ PGPASSWORD : arjdbc
263263
264264 steps :
265265 - uses : actions/checkout@v4
@@ -275,7 +275,7 @@ jobs:
275275 bundler-cache : true # runs 'bundle install' and caches installed gems automatically
276276 - name : Setup PostgreSQL user
277277 run : |
278- PGPASSWORD=postgres psql -h localhost -U postgres -c "CREATE USER jruby WITH SUPERUSER CREATEDB LOGIN PASSWORD 'jruby ';"
278+ PGPASSWORD=postgres psql -h localhost -U postgres -c "CREATE USER arjdbc WITH SUPERUSER CREATEDB LOGIN PASSWORD 'arjdbc ';"
279279 - name : Build
280280 run : |
281281 rake jar
0 commit comments