This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/pkg/universe.dagger.io/x/olli.janatuinen@gmail.com/dotnet/test/image.cue

40 lines
629 B
CUE
Raw Normal View History

package dotnet
import (
"dagger.io/dagger"
"universe.dagger.io/x/olli.janatuinen@gmail.com/dotnet"
"universe.dagger.io/docker"
)
dagger.#Plan & {
actions: test: {
_source: dagger.#Scratch & {}
simple: {
_image: dotnet.#Image & {}
verify: docker.#Run & {
input: _image.output
command: {
name: "/bin/sh"
args: ["-c", "dotnet --list-sdks | grep '6.0'"]
}
}
}
custom: {
_image: dotnet.#Image & {
version: "5.0"
}
verify: docker.#Run & {
input: _image.output
command: {
name: "/bin/sh"
args: ["-c", "dotnet --list-sdks | grep '5.0'"]
}
}
}
}
}