We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c95975 commit a42f3d8Copy full SHA for a42f3d8
1 file changed
.github/workflows/build-linux.yml
@@ -9,7 +9,7 @@ on:
9
10
concurrency:
11
group: build-linux-${{ github.ref }}
12
- cancel-in-progress: false # Don't cancel in-progress builds
+ cancel-in-progress: false
13
14
jobs:
15
build-linux-x64:
@@ -119,7 +119,9 @@ jobs:
119
run: npm run build
120
121
- name: Compile VS Code
122
- run: npm run compile-build
+ 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
125
126
- name: Build Linux application (x64)
127
run: npm run gulp vscode-linux-x64
0 commit comments