Skip to content

Commit 36f4f37

Browse files
committed
build: arm64
1 parent 074e1bb commit 36f4f37

5 files changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
set -e
3+
echo 'noop'
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
set -e
3+
echo 'noop'
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
set -e
3+
echo 'noop'

build/azure-pipelines/product-build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,17 @@ jobs:
6666
steps:
6767
- template: linux/product-build-linux-multiarch.yml
6868

69+
- job: LinuxArm64
70+
condition: and(succeeded(), eq(variables['VSCODE_COMPILE_ONLY'], 'false'), eq(variables['VSCODE_BUILD_LINUX_ARM64'], 'true'), ne(variables['VSCODE_QUALITY'], 'stable'))
71+
pool:
72+
vmImage: 'Ubuntu-16.04'
73+
variables:
74+
VSCODE_ARCH: arm64
75+
dependsOn:
76+
- Compile
77+
steps:
78+
- template: linux/product-build-linux-multiarch.yml
79+
6980
- job: LinuxAlpine
7081
condition: and(succeeded(), eq(variables['VSCODE_COMPILE_ONLY'], 'false'), eq(variables['VSCODE_BUILD_LINUX_ALPINE'], 'true'), ne(variables['VSCODE_QUALITY'], 'stable'))
7182
pool:

build/gulpfile.reh.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ const BUILD_TARGETS = [
3131
{ platform: 'linux', arch: 'ia32', pkgTarget: 'node8-linux-x86' },
3232
{ platform: 'linux', arch: 'x64', pkgTarget: 'node8-linux-x64' },
3333
{ platform: 'linux', arch: 'armhf', pkgTarget: 'node8-linux-armv7' },
34+
{ platform: 'linux', arch: 'arm64', pkgTarget: 'node8-linux-arm64' },
3435
{ platform: 'linux', arch: 'alpine', pkgTarget: 'node8-linux-alpine' },
3536
];
3637

@@ -41,6 +42,7 @@ gulp.task('vscode-reh-win32-x64-min', noop);
4142
gulp.task('vscode-reh-darwin-min', noop);
4243
gulp.task('vscode-reh-linux-x64-min', noop);
4344
gulp.task('vscode-reh-linux-armhf-min', noop);
45+
gulp.task('vscode-reh-linux-arm64-min', noop);
4446
gulp.task('vscode-reh-linux-alpine-min', noop);
4547

4648
gulp.task('vscode-reh-web-win32-ia32-min', noop);

0 commit comments

Comments
 (0)