-
Notifications
You must be signed in to change notification settings - Fork 16
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
Nightly pekko 1.1 tests #181
Conversation
pjfanning
commented
Apr 25, 2024
- When I run these locally I get 2 errors
- We need to keep better eye on whether pekko 1.1 breaks things
- also removes the support of migration-tool branch which no longer exists
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" |
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.
Should we defer the time after pekko nightly published?
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.
makes sense - I have changed this to run at 4am
Example failure. I don't know if this is a new check in pekko-persistence.
|
uses: coursier/cache-action@v6 | ||
|
||
- name: Run tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }} | ||
run: sbt -Dpekko.build.pekko.version=main "++${{ matrix.scala-version }} test" ${{ matrix.sbt-opts }} |
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.
with sbt package ?
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.
I need to run the test
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.
Package will run the test too,IIRC, what about test;package?
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.
why do I need to package? it is the tests that we need to run
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.
It can test the doc format
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.
Let's merge this then, anyway this pr is a great addition
new test issues seem to be due to apache/pekko#887 I can come back and do another PR to try to update the test |
I actually think we might need to revert apache/pekko#887 |
I think the code is right , a delay 0 will be a busy loop, and as the scheduler tick at 1ms, so how about change the delay to 1ms? |