Skip to content

Commit 21ecb58

Browse files
committed
Merge branch 'unstable' into max-blobs-preset
2 parents 2fcb293 + 9aefb55 commit 21ecb58

File tree

287 files changed

+10170
-9398
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

287 files changed

+10170
-9398
lines changed

.github/workflows/test-suite.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,20 @@ jobs:
5454
done
5555
echo "skip_ci=$SKIP_CI" >> $GITHUB_OUTPUT
5656
57+
lockbud:
58+
name: lockbud
59+
runs-on: ubuntu-latest
60+
container:
61+
image: sigmaprime/lockbud:latest
62+
steps:
63+
- name: Checkout repository
64+
uses: actions/checkout@v3
65+
- name: Install dependencies
66+
run: apt update && apt install -y cmake
67+
- name: Generate code coverage
68+
run: |
69+
cargo lockbud -k deadlock -b -l tokio_util
70+
5771
target-branch-check:
5872
name: target-branch-check
5973
runs-on: ubuntu-latest
@@ -173,8 +187,19 @@ jobs:
173187
channel: stable
174188
cache-target: release
175189
bins: cargo-nextest
190+
- name: Create CI logger dir
191+
run: mkdir ${{ runner.temp }}/network_test_logs
176192
- name: Run network tests for all known forks
177193
run: make test-network
194+
env:
195+
TEST_FEATURES: portable,ci_logger
196+
CI_LOGGER_DIR: ${{ runner.temp }}/network_test_logs
197+
- name: Upload logs
198+
uses: actions/upload-artifact@v4
199+
with:
200+
name: network_test_logs
201+
path: ${{ runner.temp }}/network_test_logs
202+
178203
slasher-tests:
179204
name: slasher-tests
180205
needs: [check-labels]
@@ -422,6 +447,7 @@ jobs:
422447
'cargo-udeps',
423448
'compile-with-beta-compiler',
424449
'cli-check',
450+
'lockbud',
425451
]
426452
steps:
427453
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)