File tree 1 file changed +31
-5
lines changed
1 file changed +31
-5
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,32 @@ extends:
25
25
parameters :
26
26
l10nSourcePaths : ./src
27
27
publishExtension : ${{ parameters.publishExtension }}
28
+ buildPlatforms :
29
+ - name : Linux
30
+ packageArch : arm64
31
+ vsceTarget : linux-arm64
32
+ - name : Linux
33
+ packageArch : arm
34
+ vsceTarget : linux-armhf
35
+ - name : Linux
36
+ packageArch : x64
37
+ vsceTarget : linux-x64
38
+ - name : MacOS
39
+ packageArch : arm64
40
+ vsceTarget : darwin-arm64
41
+ - name : MacOS
42
+ packageArch : x64
43
+ vsceTarget : darwin-x64
44
+ - name : Windows
45
+ packageArch : arm
46
+ vsceTarget : win32-arm64
47
+ - name : Windows
48
+ packageArch : ia32
49
+ vsceTarget : win32-ia32
50
+ - name : Windows
51
+ packageArch : x64
52
+ vsceTarget : win32-x64
53
+
28
54
buildSteps :
29
55
- task : NodeTool@0
30
56
inputs :
@@ -44,14 +70,14 @@ extends:
44
70
- script : python -m pip install -U pip
45
71
displayName : Upgrade pip
46
72
47
- - script : python -m pip install wheel
48
- displayName : Install wheel
49
-
50
- - script : python -m pip install nox
51
- displayName : Install wheel
73
+ - script : python -m pip install wheel nox
74
+ displayName : Install wheel and nox
52
75
76
+ # update according packageArch
53
77
- script : python -m nox --session install_bundled_libs
54
78
displayName : Install Python dependencies
79
+ env :
80
+ VSCETARGET : ${{ variables.VSCETARGET }}
55
81
56
82
- script : python ./build/update_ext_version.py --release --for-publishing
57
83
displayName : Update build number
You can’t perform that action at this time.
0 commit comments