Skip to content
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

[WEEKLY RELEASE] Bump HotShot #2344

Merged
merged 55 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
961c465
Move Marketplace to higher version and create new v0_3 placeholder
tbro Nov 5, 2024
6a16d58
test fixes
tbro Nov 6, 2024
d84422c
change number in test.yaml
tbro Nov 6, 2024
306b8f8
demo-native-mp should be running w/ test profile
tbro Nov 6, 2024
9a90b40
fixes
tbro Nov 6, 2024
f3ea371
mark error
tbro Nov 6, 2024
4a6ff12
Compiles
QuentinI Dec 2, 2024
fda4934
Lints
QuentinI Dec 2, 2024
49ae17e
Merge branch 'main' into hotshot/0.5.82
QuentinI Dec 2, 2024
675d005
Fix contract adapter
QuentinI Dec 2, 2024
4fdf6e0
fix execute_one_with_retries
QuentinI Dec 2, 2024
a9382d9
Move todo to comments
QuentinI Dec 2, 2024
2521f95
Merge branch 'main' into hotshot/0.5.82
QuentinI Dec 2, 2024
2a71c1f
Merge branch 'tb/marketplace/infinate-version' into hotshot/0.5.82
sveitser Dec 4, 2024
a7cc721
fix v3 serialization
imabdulbasit Dec 4, 2024
043c598
uncomment base and upgrade versions
imabdulbasit Dec 4, 2024
e0495c2
Fix versions in upgrade tests
sveitser Dec 4, 2024
f7856d0
update epoch version to v100
imabdulbasit Dec 4, 2024
fca10fc
Store v2 types as v1
QuentinI Dec 4, 2024
cc39a1f
Store v2 types as v1: fs
QuentinI Dec 4, 2024
b7e7e65
Merge branch 'main' into hotshot/0.5.82
QuentinI Dec 4, 2024
7b659dd
Merge remote-tracking branch 'origin/main' into ma/weekly-update-plus…
imabdulbasit Dec 4, 2024
2b0cefc
trigger CI
imabdulbasit Dec 4, 2024
0f4153e
Cargo.lock
tbro Dec 4, 2024
7c63882
sqlite lock file
tbro Dec 4, 2024
96f2271
Merge remote-tracking branch 'origin/hotshot/0.5.82' into ma/weekly-u…
tbro Dec 4, 2024
18c838e
fix leaf conversion in collect_garbage() and migrate_quorum_proposal_…
imabdulbasit Dec 5, 2024
647e6c3
update marketplace demo toml
imabdulbasit Dec 5, 2024
afd110f
Add nextest override for flaky tests
sveitser Dec 5, 2024
6bed2be
nextest: give flaky test more time
sveitser Dec 5, 2024
4013e77
update comment
sveitser Dec 5, 2024
1e04e4c
fix marketplace version in demo toml
imabdulbasit Dec 5, 2024
00b5fdb
Merge move marketplace version into weekly hotshot update (#2350)
sveitser Dec 5, 2024
3eef6af
Merge branch 'main' into hotshot/0.5.82
sveitser Dec 5, 2024
4e2e339
leaf downgrade: panic if losing DRB info
sveitser Dec 5, 2024
86b88e1
Use consistent hotshot repo URL
sveitser Dec 5, 2024
ee2559e
nit: hotshot dependency consistent casing
sveitser Dec 5, 2024
ec115f3
cleanup: remove unnecessary whitespace changes
sveitser Dec 5, 2024
a84d232
revert qp2 change in migrate_quorum_proposal_leaf_hashes and fix test
imabdulbasit Dec 5, 2024
4677783
Link to issue in migrate_consensus
QuentinI Dec 5, 2024
307bff9
Update drb_seed size
QuentinI Dec 5, 2024
c4a6a2c
Update lockfile
QuentinI Dec 5, 2024
621404f
Update query service
QuentinI Dec 5, 2024
69ea9de
Fix query service
QuentinI Dec 5, 2024
33eac8e
Use DRB consts
QuentinI Dec 5, 2024
6db42ca
Merge remote-tracking branch 'origin/main' into hotshot/0.5.82
QuentinI Dec 5, 2024
e5d3568
Use DRB consts x2
QuentinI Dec 5, 2024
6f7fd9e
Update events-service
QuentinI Dec 5, 2024
2d9eb09
Update sequencer-sqlite lockfile
QuentinI Dec 5, 2024
74e345e
Update sequencer-sqlite lockfile
QuentinI Dec 5, 2024
6ce0169
update query-service
imabdulbasit Dec 5, 2024
b24c6c5
db max connections = 25 for dev node tests
imabdulbasit Dec 5, 2024
7fe8751
update query-service
imabdulbasit Dec 5, 2024
f3244b9
Fix no-storage decides
QuentinI Dec 6, 2024
f0bfe82
Branches -> tags
QuentinI Dec 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
[profile.default]
slow-timeout = "2m"
# Kill tests after 3 periods of 2m, because they are probably hanging
slow-timeout = { period = "2m", terminate-after = 3 }
default-filter = 'not (test(slow_) | package(tests))'
retries = 2

[[profile.default.overrides]]
# This test is fast if it works (usually about 150ms) but sometimes hangs,
# especially when running concurrently with other tests. Kill it after a while
# and retry up to 10 times.
filter = 'test(test_process_client_handling_stream_subscribe_node_identity)'
slow-timeout = { period = "2s", terminate-after = 1 }
retries = 10

# The restart tests run an entire sequencing network, and so are quite resource intensive.
[[profile.default.overrides]]
filter = 'test(slow_test_restart)'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,13 @@ jobs:
needs: [build-test-bins, build-test-artifacts-postgres]
strategy:
matrix:
version: [02, 03]
version: [02,99]
include:
- version: 02
compose: "-f process-compose.yaml"

- version: 03
compose: "-f process-compose.yaml -f process-compose-mp.yml"
compose: "-f process-compose.yaml -D"
- version: 99
compose: "-f process-compose.yaml -f process-compose-mp.yml -D"
runs-on: ubuntu-latest
steps:
- name: Install Nix
Expand Down
Loading
Loading