-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Fix arm nightly tests by skipping "until" restarting tests if no old binaries #9362
Merged
Conversation
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
Result of foundationdb-pr-clang-ide on Linux CentOS 7
|
sfc-gh-clin
commented
Feb 13, 2023
@@ -263,7 +285,7 @@ def choose_binary(self, test_file: Path) -> Path: | |||
max_version = Version.parse(version_expr[3]) | |||
candidates: List[Path] = [] | |||
for ver, binary in self.binaries.items(): | |||
if min_version <= ver <= max_version: | |||
if min_version <= ver < max_version: |
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.
The definition was exclusive upper bound when added,
so just change it back.
Though it's very rare to hit this.
Doxense CI Report for Windows 10
|
sfc-gh-mpilman
approved these changes
Feb 13, 2023
Result of foundationdb-pr-clang-ide on Linux CentOS 7
|
Doxense CI Report for Windows 10
|
Result of foundationdb-pr-cluster-tests on Linux CentOS 7
|
Result of foundationdb-pr-cluster-tests on Linux CentOS 7
|
Result of foundationdb-pr on Linux CentOS 7
|
Result of foundationdb-pr-clang on Linux CentOS 7
|
Result of foundationdb-pr on Linux CentOS 7
|
Result of foundationdb-pr-clang on Linux CentOS 7
|
Result of foundationdb-pr-clang-ide on Linux CentOS 7
|
Doxense CI Report for Windows 10
|
Result of foundationdb-pr-cluster-tests on Linux CentOS 7
|
Result of foundationdb-pr on Linux CentOS 7
|
Result of foundationdb-pr-clang on Linux CentOS 7
|
Result of foundationdb-pr on Linux CentOS 7
|
Result of foundationdb-pr-cluster-tests on Linux CentOS 7
|
Result of foundationdb-pr-macos-m1 on macOS Monterey 12.x
|
Result of foundationdb-pr-clang on Linux CentOS 7
|
Result of foundationdb-pr-clang-ide on Linux CentOS 7
|
Result of foundationdb-pr-clang-ide on Linux CentOS 7
|
Doxense CI Report for Windows 10
|
Result of foundationdb-pr-clang on Linux CentOS 7
|
Result of foundationdb-pr on Linux CentOS 7
|
Result of foundationdb-pr-cluster-tests on Linux CentOS 7
|
sfc-gh-nwijetunga
added a commit
to sfc-gh-nwijetunga/foundationdb
that referenced
this pull request
Feb 15, 2023
* main: (50 commits) Client status report API in Java and python bindings (apple#9366) EaR: Update encryption methods to make 'cipherHeaderKey' optional (apple#9378) EaR: Refactor encryption header std::variant serializer and versioning (apple#9345) Fix arm nightly tests by skipping "until" restarting tests if no old binaries (apple#9362) Backup Mutation Log Separates Tenant Map Modifications During Restore (apple#9292) Remove storageEngineExcludeTypes from blob tests EaR: fix BlobCipher.h build failure Fix one more test toml spec Include missing tenants in the restore output if their state is already an error state Fix a few minor restore bugs and add a dry-run mode. Some improvements to the fdbcli output. Fix restarting to 7.2 tests for sharded rocks Save shard_encode_location_metadata knob value for restarting tests fix anyExisted when beginTenant==endTenant Enable RocksDB restarting tests Fix some merge issues and review comments Fix some merge issues Fix get mapped range test assertion to account for the possibility of a range terminating early when it reaches the end of a shard Fix merge issue Remove unnecessary try/catch Make a few minor fixes, refactor some code for clarity, and improve throughput of repopulating a management cluster ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Right now, if there's no old binary in the Joshua setup,
restarting will run with the current binary as default.
It will fail with restarting tests with
until
keyword,as
until
is meant to limit the max version to run the test.This PR will let the test picker not include those "until" restarting tests if old binaries are not available.
Code-Reviewer Section
The general pull request guidelines can be found here.
Please check each of the following things and check all boxes before accepting a PR.
For Release-Branches
If this PR is made against a release-branch, please also check the following:
release-branch
ormain
if this is the youngest branch)