-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Supabase cli unable to start containers on github actions #1737
Comments
Could you share the output from running |
Hmm I added pg14 to our test matrix and it still reported healthy. I went through the changes in 1.120.0 again and they seem unrelated to local password. Could you check if there's any migrations altering the database password? grep -ri supabase_admin supabase/migrations Another thing you can try is to run steps:
- run: supabase db start
- run: psql -h localhost -U supabase_admin -p 54322 -c 'select 1'
env:
PGPASSWORD: postgres |
No hits for Doing a (ignore whitespace issue from copy/paste):
gives
which seems to be working. If I follow that with
Doing a |
Thanks for these logs. I think we are making progress. Could you try isolating the realtime service since the error seems to be from there?
I've also made a new beta release with updated pg14 initial schema. I'm not sure if it fixes this specific issue but please give it a try. You can do that by setting the version of setup-cli to |
Here is the output of the following, I just appended it to the previous debugging commands. I called stop so we wouldn't get the
|
I still can't reproduce this error. Do you mind getting the logs from the following command?
|
We have updated realtime in latest CLI release which changes the order which realtime migrations are run. If this is still a problem, I think the best resolution is to upgrade your hosted project to PG15. Hope it helps! |
Describe the bug
Running
supabase start
on github actions leads to auth errorTo Reproduce
Steps to reproduce the behavior:
Expected behavior
Supabase starts and is able to be interacted with
Screenshots
Desktop (please complete the following information):
ubuntu-latest
github actions runnerAdditional context
Cross-posting this from the
setup-cli
repo as I had originally posted there.. We have been usinglatest
version of the CLI within github actions. On Friday tests were passing, this morning they aren't as we aren't able to get supabase up and running within our actions. I did some various version testing after finding an older version still works fine with the following results:Happy to try any other debugging or changes to the action
The text was updated successfully, but these errors were encountered: