Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ members = ["crates/*"]
resolver = "2"

[profile.release]
strip = true
# Enable all optimizations
opt-level = 3
# Enable full link-time-optimizations
lto = true
codegen-units = 1
# Enable full debug info for optimized builds.
Expand Down
5 changes: 3 additions & 2 deletions azure-pipelines/playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@ resources:
- repository: templates
type: github
name: microsoft/vscode-engineering
ref: kanadig/rust-binaries1 # TODO: Change this to `main` after `kanadig/rust-binaries1` is merged to `main`.
ref: main
endpoint: Monaco

extends:
template: azure-pipelines/extension/pipeline.yml@templates
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
Expand Down
7 changes: 4 additions & 3 deletions azure-pipelines/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ resources:
- repository: templates
type: github
name: microsoft/vscode-engineering
ref: kanadig/rust-binaries1 # TODO: Change this to `main` after `kanadig/rust-binaries1` is merged to `main`.
ref: main
endpoint: Monaco

extends:
template: azure-pipelines/extension/pipeline.yml@templates
template: azure-pipelines/rust-package/pipeline.yml@templates
parameters:
ghCreateTag: false
binaryName: "pet"
signing: false # TODO: remove this before consuming in extensions (currently extensions build and sign directly)
signing: true
buildWasm: false
apiScanSoftwareVersion: 2024 # major version of `pet` for internal reporting

buildPlatforms:
- name: Linux
Expand Down
7 changes: 4 additions & 3 deletions azure-pipelines/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@ resources:
- repository: templates
type: github
name: microsoft/vscode-engineering
ref: kanadig/rust-binaries1 # TODO: Change this to `main` after `kanadig/rust-binaries1` is merged to `main`.
ref: main
endpoint: Monaco

extends:
template: azure-pipelines/extension/pipeline.yml@templates
template: azure-pipelines/rust-package/pipeline.yml@templates
parameters:
ghCreateTag: false
binaryName: "pet"
signing: false # TODO: remove this before consuming in extensions (currently extensions build and sign directly)
signing: true
buildWasm: false
apiScanSoftwareVersion: 2024 # major version of `pet` for internal reporting

buildPlatforms:
- name: Linux
Expand Down