-
Notifications
You must be signed in to change notification settings - Fork 42
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
Build and Test Oracle R2DBC with a Github Action #2
Conversation
…into build-and-test-action
In the last test run, looks like the action hung on OracleBatchImplTest. Most likely that's due to Issue #5, where concurrent SQL execution and row processing leads to a blocked thread. I'd figure the Github runner is a single core virtual environment, which means ForkJoinPool.commonPool() has just one thread. When you've got a pool of just one thread, and that thread is blocked, you're not going to make progress any time soon. |
…ild-and-test-action
…ild-and-test-action
…ild-and-test-action
This pull request is now (finally) ready for review and, if approved, it may be merged into the main branch. With this action in our repo, an automated test run will begin whenever there is a pull request. After pulling in the latest changes from main, the tests are no longer failing or getting stuck. |
(Please don't merge yet: I'm using this pull request just to trigger the action and verify if it works)
I'm planning to add another action that executes our tests as well.