-
Notifications
You must be signed in to change notification settings - Fork 999
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
chore: run replication reg tests with epoll #4426
Merged
Changes from 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
00ecc2d
chore: run replication reg tests with epoll
kostasrim c1e9d7c
use exclude and fix typo
kostasrim d7c2e1f
fixes
kostasrim eaa94b9
missing then
kostasrim ad9a31b
fix empty quote
kostasrim bfe608e
skip with epoll
kostasrim f707211
fixes
kostasrim b7e5db5
add quote
kostasrim f35fb0b
try
kostasrim 2a34e35
use exported variable
kostasrim f7f25ca
typo
kostasrim 7bc4fca
fixes
kostasrim a9a1dbd
Merge branch 'main' into kpr2
kostasrim 484dc92
run all tests
kostasrim 8b3b9a4
exclude tests
kostasrim c3c533a
small revert
kostasrim 427c311
exclude failing
kostasrim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,13 @@ jobs: | |
matrix: | ||
# Test of these containers | ||
container: ["ubuntu-dev:20"] | ||
proactor: [Uring, Epoll] | ||
build-type: [Debug, Release] | ||
runner: [ubuntu-latest, [self-hosted, linux, ARM64]] | ||
exclude: | ||
- proactor: Epoll | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we exclude epoll with debug? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes but we can add it |
||
build-type: Debug | ||
|
||
runs-on: ${{ matrix.runner }} | ||
|
||
container: | ||
|
@@ -31,6 +36,7 @@ jobs: | |
cat /proc/cpuinfo | ||
ulimit -a | ||
env | ||
|
||
- name: Configure & Build | ||
run: | | ||
# -no-pie to disable address randomization so we could symbolize stacktraces | ||
|
@@ -52,6 +58,9 @@ jobs: | |
aws-access-key-id: ${{ secrets.AWS_S3_ACCESS_KEY }} | ||
aws-secret-access-key: ${{ secrets.AWS_S3_ACCESS_SECRET }} | ||
s3-bucket: ${{ secrets.S3_REGTEST_BUCKET }} | ||
# Chain ternary oprator of the form (which can be nested) | ||
# (expression == condition && <true expression> || <false expression>) | ||
epoll: ${{ matrix.proactor == 'Epoll' && 'true' || '' }} | ||
|
||
- name: Upload logs on failure | ||
if: failure() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 not all regression tests?
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 don't mind, I thought you wanted only the replication ones. Also we can run both
debug and release
(now I only run them in release)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.
also we got failures https://github.com/dragonflydb/dragonfly/actions/runs/12669695232/job/35307742465 but I guess these are expected
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.
Lets run all regression tests not only replication.
Not sure they are expected to fail as Roman said he did some fixes. @romange do you want to check this or should we?
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.
lets skip ipv6 test for epoll. Please check why test_big_containers fail