Skip to content

Commit a42f3d8

Browse files
committed
Update build-linux.yml
1 parent 5c95975 commit a42f3d8

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
concurrency:
1111
group: build-linux-${{ github.ref }}
12-
cancel-in-progress: false # Don't cancel in-progress builds
12+
cancel-in-progress: false
1313

1414
jobs:
1515
build-linux-x64:
@@ -119,7 +119,9 @@ jobs:
119119
run: npm run build
120120

121121
- name: Compile VS Code
122-
run: npm run compile-build
122+
run: |
123+
# Use 4GB instead of 8GB to prevent OOM on GitHub Actions runners
124+
node --max-old-space-size=4096 ./node_modules/gulp/bin/gulp.js compile-build-with-mangling
123125
124126
- name: Build Linux application (x64)
125127
run: npm run gulp vscode-linux-x64

0 commit comments

Comments
 (0)