Skip to content

Commit

Permalink
Fix CI (#725)
Browse files Browse the repository at this point in the history
  • Loading branch information
b1ron committed Jan 11, 2024
1 parent 6d09c2f commit 0398552
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion tests/enmeshed-runtime
2 changes: 1 addition & 1 deletion tests/meteor
2 changes: 1 addition & 1 deletion tests/mongo
Submodule mongo updated 37 files
+5 −1 buildscripts/evergreen_expansions2bash.py
+0 −4 etc/backports_required_for_multiversion_tests.yml
+1 −0 etc/evergreen.yml
+1 −0 etc/evergreen_nightly.yml
+97 −0 etc/evergreen_yml_components/configuration.yml
+0 −91 etc/evergreen_yml_components/definitions.yml
+245 −0 etc/evergreen_yml_components/perf_tasks.yml
+353 −0 etc/evergreen_yml_components/variants/perf.yml
+154 −6 etc/system_perf.yml
+0 −86 jstests/noPassthrough/killOp_against_user_write_waiting_on_journal_flusher_thread.js
+1 −0 jstests/sharding/coordinate_txn_recover_on_stepup_with_tickets_exhausted.js
+40 −0 jstests/sharding/drop_database_before_write_is_targeted.js
+4 −0 jstests/sharding/txn_with_several_routers.js
+4 −1 src/mongo/bson/bson_validate_fuzzer.cpp
+10 −4 src/mongo/db/curop.cpp
+2 −2 src/mongo/db/curop.h
+4 −2 src/mongo/db/index/multikey_paths.h
+7 −2 src/mongo/db/query/get_executor.cpp
+1 −1 src/mongo/db/s/balancer/balance_stats.cpp
+0 −9 src/mongo/db/s/balancer/balancer_chunk_selection_policy.h
+3 −71 src/mongo/db/s/balancer/balancer_chunk_selection_policy_impl.cpp
+0 −4 src/mongo/db/s/balancer/balancer_chunk_selection_policy_impl.h
+4 −4 src/mongo/db/s/balancer/balancer_defragmentation_policy_impl.cpp
+299 −170 src/mongo/db/s/balancer/balancer_policy.cpp
+113 −29 src/mongo/db/s/balancer/balancer_policy.h
+1,001 −354 src/mongo/db/s/balancer/balancer_policy_test.cpp
+1 −1 src/mongo/db/s/config/initial_split_policy.cpp
+15 −5 src/mongo/db/storage/control/journal_flusher.cpp
+2 −2 src/mongo/db/storage/control/journal_flusher.h
+3 −1 src/mongo/db/storage/key_string_to_bson_fuzzer.cpp
+2 −2 src/mongo/db/write_concern.cpp
+3 −0 src/mongo/s/catalog/type_chunk.h
+29 −2 src/mongo/s/chunk.cpp
+4 −3 src/mongo/s/chunk.h
+17 −0 src/mongo/s/chunk_manager.h
+39 −7 src/mongo/s/collection_routing_info_targeter.cpp
+3 −0 src/mongo/s/collection_routing_info_targeter.h
2 changes: 1 addition & 1 deletion tests/mongo-go-driver.yml
Expand Up @@ -163,7 +163,7 @@ results:
mongodb:
stats:
fail: 31
skip: 273
skip: 274
pass: 2584
ignore:
- go.mongodb.org/mongo-driver/internal/integration/TestUnifiedSpecs
Expand Down
16 changes: 9 additions & 7 deletions tests/mongo.yml
Expand Up @@ -112,13 +112,15 @@ results:
# https://github.com/FerretDB/FerretDB/issues/2915
- mongo/jstests/aggregation/use_query_sort.js
capped:
# https://github.com/FerretDB/FerretDB/issues/3458
- mongo/jstests/core/capped/cappeda.js
# https://github.com/FerretDB/FerretDB/issues/2286
- mongo/jstests/core/capped/capped_large_docs.js
# https://github.com/FerretDB/FerretDB/issues/3921
- mongo/jstests/core/capped/capped_queries_and_id_index.js
# https://github.com/FerretDB/FerretDB/issues/2286
- mongo/jstests/core/capped/capped_resize.js
# https://github.com/FerretDB/FerretDB/issues/3922
- mongo/jstests/core/capped/capped_update.js
- mongo/jstests/core/capped/capped_upsert.js
# https://github.com/FerretDB/FerretDB/issues/3457
- mongo/jstests/core/ddl/convert_to_capped_nonexistant.js
- mongo/jstests/core/ddl/convert_to_capped.js
- mongo/jstests/noPassthrough/noncapped_oplog_creation.js
Expand Down Expand Up @@ -208,8 +210,8 @@ results:

postgresql:
stats:
fail: 76
pass: 41
fail: 73
pass: 44
fail:
include_fail:
- aggregation
Expand All @@ -222,8 +224,8 @@ results:

sqlite:
stats:
fail: 76
pass: 41
fail: 73
pass: 44
fail:
include_fail:
- aggregation
Expand Down

0 comments on commit 0398552

Please sign in to comment.