Skip to content
Snippets Groups Projects
Commit dbce85ee authored by Andri Joos's avatar Andri Joos :blush:
Browse files

add dotnet 9.0 support

parent e697fa06
No related merge requests found
......@@ -6,8 +6,25 @@ include:
variables:
IMAGE_BASENAME: ${IMAGE_PREFIX}/devcontainer-dotnet
"8.0":
.build_old_dotnet:
extends: .build_old_version
variables:
IMAGE_NAME: ${IMAGE_BASENAME}:${VERSION}
BUILD_ARGS: DOTNET_VERSION=${VERSION}
.build_dotnet:
extends: .build_image_job_template
variables:
IMAGE_NAME: ${IMAGE_BASENAME}:8.0
BUILD_ARGS: DOTNET_VERSION=8.0
IMAGE_NAME: ${IMAGE_BASENAME}:${VERSION}
BUILD_ARGS: DOTNET_VERSION=${VERSION}
"8.0": # LTS
extends: .build_dotnet
variables:
VERSION: 8.0
"9.0": # STS
extends: .build_dotnet
variables:
VERSION: 9.0
......@@ -34,6 +34,7 @@
"description": "Choose dotnet image version",
"options": [
"8.0",
"9.0",
],
},
],
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment