Skip to content

Commit a129f4c

Browse files
committed
Remove concurrency settings. Update workers to Blacksmith.
1 parent 94174ad commit a129f4c

File tree

2 files changed

+5
-22
lines changed

2 files changed

+5
-22
lines changed

.github/workflows/checks.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-latest
13+
runs-on: blacksmith-8vcpu-ubuntu-2404
1414
steps:
1515
- name: Checkout repository
1616
uses: actions/checkout@v5
@@ -22,8 +22,7 @@ jobs:
2222
run: yarn build --output-style static
2323

2424
test:
25-
if: false # temporarily disable test script
26-
runs-on: ubuntu-latest
25+
runs-on: blacksmith-8vcpu-ubuntu-2404
2726
steps:
2827
- name: Checkout repository
2928
uses: actions/checkout@v5
@@ -66,7 +65,7 @@ jobs:
6665
--exclude=rust-sdk/integration
6766
6867
lint:
69-
runs-on: ubuntu-latest
68+
runs-on: blacksmith-8vcpu-ubuntu-2404
7069
steps:
7170
- name: Checkout repository
7271
uses: actions/checkout@v5
@@ -80,7 +79,7 @@ jobs:
8079
run: yarn lint --output-style static
8180

8281
verify-generated:
83-
runs-on: ubuntu-latest
82+
runs-on: blacksmith-8vcpu-ubuntu-2404
8483
steps:
8584
- name: Checkout repository
8685
uses: actions/checkout@v5
@@ -97,7 +96,7 @@ jobs:
9796
rust-sdk/client/src/generated
9897
9998
changeset:
100-
runs-on: ubuntu-latest
99+
runs-on: blacksmith-8vcpu-ubuntu-2404
101100
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
102101
steps:
103102
- name: Checkout repository

legacy-sdk/whirlpool/vitest.config.mts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,5 @@ export default defineConfig({
44
test: {
55
globals: true,
66
testTimeout: 60000,
7-
8-
// --- LiteSVM stability settings ---
9-
// Run tests sequentially — LiteSVM singleton is not thread-safe
10-
fileParallelism: false,
11-
maxConcurrency: 1,
12-
13-
// Use a single forked process to avoid native memory duplication
14-
pool: "forks",
15-
poolOptions: {
16-
forks: {
17-
singleFork: true, // all tests share one process
18-
},
19-
},
20-
21-
// Avoid isolating test environments so the singleton persists cleanly
22-
isolate: false,
237
},
248
});

0 commit comments

Comments
 (0)