-
Notifications
You must be signed in to change notification settings - Fork 264
speed up E2E test setup #1077
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
base: main
Are you sure you want to change the base?
speed up E2E test setup #1077
Conversation
tsahil01
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added self review comments.
@slavingia can you approve the workflow for this? Thanks.
| DOCKER_BUILDKIT: 1 | ||
| BUILDKIT_PROGRESS: plain |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- allows Docker to cache image layers between runs
- show plain progress output cleaner github actions logs
|
|
||
| [realtime] | ||
| enabled = true | ||
| enabled = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- disable realtime service: not used by E2E tests as tests only validate http responses and not live subscriptions
|
|
||
| [storage] | ||
| enabled = true | ||
| enabled = false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- disable storage service: not used by E2E tests as tests check UI, not S3 file persistence
@tsahil01, I think you could trigger CI by clicking the Also, it would be great if you could remove the |
I think Sahil needs to approve this so that I can run the CI: |

ref #1064
Changes
1. Disabled unused supabase services
realtimeservice as e2e tests don't test real-time subscriptionsstorageservice as e2e tests don't test S3 persistence2. Enabled Docker BuildKit caching
docker/setup-buildx-action@v3DOCKER_BUILDKIT=1Use of AI