Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: [WIN-NPM] remove ws19 build #1844

Merged
merged 6 commits into from
Apr 11, 2023
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
7 changes: 1 addition & 6 deletions .pipelines/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,6 @@ stages:
arch: amd64
name: npm
os: linux
npm_windows2019_amd64:
arch: amd64
name: npm
os: windows
os_version: ltsc2019
npm_windows2022_amd64:
arch: amd64
name: npm
Expand Down Expand Up @@ -289,7 +284,7 @@ stages:
platforms: linux/amd64 linux/arm64 windows/amd64
npm:
name: npm
os_versions: ltsc2019 ltsc2022
os_versions: ltsc2022
platforms: linux/amd64 linux/arm64 windows/amd64
steps:
- template: containers/manifest-template.yaml
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ cns-manifest-build: ## build azure-cns multiplat container manifest.
PLATFORMS="$(PLATFORMS)" \
IMAGE=$(CNS_IMAGE) \
TAG=$(CNS_VERSION) \
OS_VERSIONS="ltsc2022 ltsc2019"
OS_VERSIONS=$(OS_VERSIONS)

cns-manifest-push: ## push cns multiplat container manifest
$(MAKE) manifest-push \
Expand All @@ -571,7 +571,7 @@ npm-manifest-build: ## build azure-npm multiplat container manifest.
PLATFORMS="$(PLATFORMS)" \
IMAGE=$(NPM_IMAGE) \
TAG=$(NPM_VERSION) \
OS_VERSIONS="ltsc2022 ltsc2019"
OS_VERSIONS=$(OS_VERSIONS)

npm-manifest-push: ## push multiplat container manifest
$(MAKE) manifest-push \
Expand Down