Skip to content

Commit 1861966

Browse files
authored
Merge pull request #5222 from BitGo/VL-0-fix-node-flake
fix: disable v8 compile cache in CI
2 parents dd69113 + 802c441 commit 1861966

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ jobs:
7272
run: yarn run check-fmt
7373

7474
- name: build packages
75+
env:
76+
# Workaround for https://github.com/nodejs/node/issues/51555
77+
DISABLE_V8_COMPILE_CACHE: '1'
7578
run: yarn run postinstall
7679

7780
- name: Check Package Dependencies
@@ -172,6 +175,9 @@ jobs:
172175

173176
- name: build packages
174177
if: steps.lerna-cache.outputs.cache-hit == 'true'
178+
env:
179+
# Workaround for https://github.com/nodejs/node/issues/51555
180+
DISABLE_V8_COMPILE_CACHE: '1'
175181
run: yarn run postinstall
176182

177183
- name: Browser Tests

.github/workflows/test_package_updates.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ jobs:
4545
run: rm yarn.lock
4646

4747
- name: Install Packages
48+
env:
49+
# Workaround for https://github.com/nodejs/node/issues/51555
50+
DISABLE_V8_COMPILE_CACHE: '1'
4851
run: yarn install
4952

5053
- name: Unit test all

0 commit comments

Comments
 (0)