Skip to content

Commit a2f1051

Browse files
Finalized release 2024.0 (#189)
* update version * update stable pipeline
1 parent 1b11f72 commit a2f1051

File tree

3 files changed

+34
-8
lines changed

3 files changed

+34
-8
lines changed

build/azure-pipeline.stable.yml

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,32 @@ extends:
2525
parameters:
2626
l10nSourcePaths: ./src
2727
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+
2854
buildSteps:
2955
- task: NodeTool@0
3056
inputs:
@@ -44,14 +70,14 @@ extends:
4470
- script: python -m pip install -U pip
4571
displayName: Upgrade pip
4672

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
5275

76+
# update according packageArch
5377
- script: python -m nox --session install_bundled_libs
5478
displayName: Install Python dependencies
79+
env:
80+
VSCETARGET: ${{ variables.VSCETARGET }}
5581

5682
- script: python ./build/update_ext_version.py --release --for-publishing
5783
displayName: Update build number

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "debugpy",
33
"displayName": "Python Debugger",
44
"description": "Python Debugger extension using `debugpy`.",
5-
"version": "2024.0.0-rc",
5+
"version": "2024.0.0",
66
"publisher": "ms-python",
77
"enabledApiProposals": [
88
"portsAttributes"

0 commit comments

Comments
 (0)