Skip to content

Commit

Permalink
chore: remove windows version 1903, 1909 and 2004 (EOL) (#841)
Browse files Browse the repository at this point in the history
Signed-off-by: Anish Ramasekar <[email protected]>
  • Loading branch information
aramase committed Apr 14, 2023
1 parent e3282c3 commit cbc280e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/azure-identity/dotnet/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ OUTPUT_TYPE ?= type=registry
ALL_OS = linux windows
ALL_ARCH.linux = amd64 arm64
ALL_ARCH.windows = amd64
ALL_OSVERSIONS.windows := 1809 1903 1909 2004 ltsc2022
ALL_OSVERSIONS.windows := 1809 ltsc2022
ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
ALL_OS_ARCH.windows = $(foreach osver, ${ALL_OSVERSIONS.windows}, windows-$(osver)-$(foreach arch, ${ALL_ARCH.windows},$(arch)))
ALL_OS_ARCH = $(foreach os, $(ALL_OS), ${ALL_OS_ARCH.${os}})

# The architecture of the image
ARCH ?= amd64
# OS Version for the Windows images: 1809, 1903, 1909, 2004, ltsc2022
# OS Version for the Windows images: 1809, ltsc2022
OSVERSION ?= 1809

.PHONY: container-linux
Expand Down
4 changes: 2 additions & 2 deletions examples/msal-go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ OUTPUT_TYPE ?= type=registry
ALL_OS = linux windows
ALL_ARCH.linux = amd64 arm64
ALL_ARCH.windows = amd64
ALL_OSVERSIONS.windows := 1809 1903 1909 2004 ltsc2022
ALL_OSVERSIONS.windows := 1809 ltsc2022
ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
ALL_OS_ARCH.windows = $(foreach osver, ${ALL_OSVERSIONS.windows}, windows-$(osver)-$(foreach arch, ${ALL_ARCH.windows},$(arch)))
ALL_OS_ARCH = $(foreach os, $(ALL_OS), ${ALL_OS_ARCH.${os}})

# The architecture of the image
ARCH ?= amd64
# OS Version for the Windows images: 1809, 1903, 1909, 2004, ltsc2022
# OS Version for the Windows images: 1809, ltsc2022
OSVERSION ?= 1809

.PHONY: container-linux
Expand Down
4 changes: 2 additions & 2 deletions examples/msal-net/akvdotnet/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ OUTPUT_TYPE ?= type=registry
ALL_OS = linux windows
ALL_ARCH.linux = amd64 arm64
ALL_ARCH.windows = amd64
ALL_OSVERSIONS.windows := 1809 1903 1909 2004 ltsc2022
ALL_OSVERSIONS.windows := 1809 ltsc2022
ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
ALL_OS_ARCH.windows = $(foreach osver, ${ALL_OSVERSIONS.windows}, windows-$(osver)-$(foreach arch, ${ALL_ARCH.windows},$(arch)))
ALL_OS_ARCH = $(foreach os, $(ALL_OS), ${ALL_OS_ARCH.${os}})

# The architecture of the image
ARCH ?= amd64
# OS Version for the Windows images: 1809, 1903, 1909, 2004, ltsc2022
# OS Version for the Windows images: 1809, ltsc2022
OSVERSION ?= 1809

.PHONY: container-linux
Expand Down

0 comments on commit cbc280e

Please sign in to comment.