Skip to content

Commit 8c1dc2f

Browse files
committed
Try to fix ci
1 parent 891ea0f commit 8c1dc2f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Check
88
strategy:
99
matrix:
10-
rust: ["1.38.0", "stable", "beta", "nightly"]
10+
rust: ["1.42.0", "stable", "beta", "nightly"]
1111
backend: ["postgres", "sqlite"]
1212
os: [ubuntu-18.04, macos-latest, windows-latest]
1313
runs-on: ${{ matrix.os }}
@@ -58,12 +58,11 @@ jobs:
5858
brew update
5959
brew uninstall --ignore-dependencies libpq
6060
brew install postgres
61-
/usr/local/Cellar/postgresql/12.2/bin/initdb --locale=C -E UTF-8 /usr/local/var/postgres
62-
/usr/local/opt/postgres/bin/pg_ctl -D /usr/local/var/postgres start
61+
pg_ctl -D /usr/local/var/postgres start
6362
sleep 3
64-
/usr/local/opt/postgres/bin/createuser -s postgres
65-
/usr/local/opt/postgres/bin/createdb wundergraph_test -O postgres
66-
/usr/local/opt/postgres/bin/psql -c "ALTER USER postgres PASSWORD 'postgres';" wundergraph_test
63+
createuser -s postgres
64+
createdb wundergraph_test -O postgres
65+
psql -c "ALTER USER postgres PASSWORD 'postgres';" wundergraph_test
6766
6867
- name: Install sqlite (MacOS)
6968
if: runner.os == 'macOS' && matrix.backend == 'sqlite'

0 commit comments

Comments
 (0)