95c1b07f3a
Co-authored-by: Vasek - Tom C. <tom.chauveau@epitech.eu> Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk> Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
22 lines
278 B
CUE
22 lines
278 B
CUE
package docker
|
|
|
|
import (
|
|
"alpha.dagger.io/random"
|
|
)
|
|
|
|
TestConfig: {
|
|
host: string @dagger(input)
|
|
}
|
|
|
|
TestHost: {
|
|
suffix: random.#String & {
|
|
seed: "docker-tcp-test"
|
|
}
|
|
|
|
run: #Run & {
|
|
name: "daggerci-test-tcp-\(suffix.out)"
|
|
ref: "hello-world"
|
|
host: TestConfig.host
|
|
}
|
|
}
|