-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12f5cb1
commit 4c3347b
Showing
10 changed files
with
186 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pre-release.yml: This should build from the `main` branch and publish to the Azure Pipeline feed. This will be consumed by extensions that are also doing pre-release builds. Signing is required on this build. | ||
|
||
stable.yml: This should build from the `release/*` branch and publish to the Azure Pipeline feed. This will be consumed by extensions when publishing stable builds. Signing is required on this build. | ||
|
||
playground.yml: This pipeline is for engineering/testing purposes so we can do fixes and tests without affecting the pipeline feeds. This will not publish to the Azure Pipeline feed. Signing is not required on this build. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
trigger: none | ||
pr: none | ||
# Should only ever be manually run. | ||
|
||
resources: | ||
repositories: | ||
- repository: templates | ||
type: github | ||
name: microsoft/vscode-engineering | ||
ref: main | ||
endpoint: Monaco | ||
|
||
extends: | ||
template: azure-pipelines/rust-package/pipeline.yml@templates | ||
parameters: | ||
ghCreateTag: false | ||
binaryName: "pet" | ||
signing: false | ||
buildWasm: false | ||
apiScanSoftwareVersion: 2024 # major version of `pet` for internal reporting | ||
|
||
buildPlatforms: | ||
- name: Linux | ||
vsceTarget: "web" | ||
- name: Linux | ||
packageArch: arm64 | ||
vsceTarget: linux-arm64 | ||
- name: Linux | ||
packageArch: arm | ||
vsceTarget: linux-armhf | ||
- name: Linux | ||
packageArch: x64 | ||
vsceTarget: linux-x64 | ||
- name: Linux | ||
packageArch: arm64 | ||
vsceTarget: alpine-arm64 | ||
- name: Linux | ||
packageArch: x64 | ||
vsceTarget: alpine-x64 | ||
- name: MacOS | ||
packageArch: arm64 | ||
vsceTarget: darwin-arm64 | ||
- name: MacOS | ||
packageArch: x64 | ||
vsceTarget: darwin-x64 | ||
- name: Windows | ||
packageArch: arm | ||
vsceTarget: win32-arm64 | ||
- name: Windows | ||
packageArch: x64 | ||
vsceTarget: win32-x64 | ||
|
||
preBuildSteps: | ||
- pwsh: Rename-Item -Path "./.cargo/config.toml.disabled" -NewName "config.toml" | ||
displayName: "Enable Azure Build config for Rust" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Run on a schedule | ||
trigger: none | ||
pr: none | ||
|
||
schedules: | ||
- cron: "0 10 * * 1-5" # 10AM UTC (2AM PDT) MON-FRI (VS Code Pre-release builds at 9PM PDT) | ||
displayName: Nightly Pre-Release Schedule | ||
always: false # only run if there are source code changes | ||
branches: | ||
include: | ||
- main | ||
|
||
resources: | ||
repositories: | ||
- repository: templates | ||
type: github | ||
name: microsoft/vscode-engineering | ||
ref: main | ||
endpoint: Monaco | ||
|
||
extends: | ||
template: azure-pipelines/rust-package/pipeline.yml@templates | ||
parameters: | ||
ghCreateTag: false | ||
binaryName: "pet" | ||
signing: true | ||
buildWasm: false | ||
apiScanSoftwareVersion: 2024 # major version of `pet` for internal reporting | ||
|
||
buildPlatforms: | ||
- name: Linux | ||
vsceTarget: "web" | ||
- name: Linux | ||
packageArch: arm64 | ||
vsceTarget: linux-arm64 | ||
- name: Linux | ||
packageArch: arm | ||
vsceTarget: linux-armhf | ||
- name: Linux | ||
packageArch: x64 | ||
vsceTarget: linux-x64 | ||
- name: Linux | ||
packageArch: arm64 | ||
vsceTarget: alpine-arm64 | ||
- name: Linux | ||
packageArch: x64 | ||
vsceTarget: alpine-x64 | ||
- name: MacOS | ||
packageArch: arm64 | ||
vsceTarget: darwin-arm64 | ||
- name: MacOS | ||
packageArch: x64 | ||
vsceTarget: darwin-x64 | ||
- name: Windows | ||
packageArch: arm | ||
vsceTarget: win32-arm64 | ||
- name: Windows | ||
packageArch: x64 | ||
vsceTarget: win32-x64 | ||
|
||
preBuildSteps: | ||
- pwsh: Rename-Item -Path "./.cargo/config.toml.disabled" -NewName "config.toml" | ||
displayName: "Enable Azure Build config for Rust" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
trigger: none | ||
pr: none | ||
# Should only ever be manually run. | ||
|
||
resources: | ||
repositories: | ||
- repository: templates | ||
type: github | ||
name: microsoft/vscode-engineering | ||
ref: main | ||
endpoint: Monaco | ||
|
||
extends: | ||
template: azure-pipelines/rust-package/pipeline.yml@templates | ||
parameters: | ||
ghCreateTag: false | ||
binaryName: "pet" | ||
signing: true | ||
buildWasm: false | ||
apiScanSoftwareVersion: 2024 # major version of `pet` for internal reporting | ||
|
||
buildPlatforms: | ||
- name: Linux | ||
vsceTarget: "web" | ||
- name: Linux | ||
packageArch: arm64 | ||
vsceTarget: linux-arm64 | ||
- name: Linux | ||
packageArch: arm | ||
vsceTarget: linux-armhf | ||
- name: Linux | ||
packageArch: x64 | ||
vsceTarget: linux-x64 | ||
- name: Linux | ||
packageArch: arm64 | ||
vsceTarget: alpine-arm64 | ||
- name: Linux | ||
packageArch: x64 | ||
vsceTarget: alpine-x64 | ||
- name: MacOS | ||
packageArch: arm64 | ||
vsceTarget: darwin-arm64 | ||
- name: MacOS | ||
packageArch: x64 | ||
vsceTarget: darwin-x64 | ||
- name: Windows | ||
packageArch: arm | ||
vsceTarget: win32-arm64 | ||
- name: Windows | ||
packageArch: x64 | ||
vsceTarget: win32-x64 | ||
|
||
preBuildSteps: | ||
- pwsh: Rename-Item -Path "./.cargo/config.toml.disabled" -NewName "config.toml" | ||
displayName: "Enable Azure Build config for Rust" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters