282759c0e5
In preparation for Europa, we will vendor multiple CUE modules: - `pkg/alpha.dagger.io`: legacy non-europa packages - `pkg/dagger.io`: core Europa packages - `pkg/universe.dagger.io`: Europa universe Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
30 lines
434 B
CUE
30 lines
434 B
CUE
package docker
|
|
|
|
import (
|
|
"alpha.dagger.io/dagger"
|
|
"alpha.dagger.io/random"
|
|
)
|
|
|
|
TestConfig: {
|
|
host: string @dagger(input)
|
|
user: string @dagger(input)
|
|
key: dagger.#Secret @dagger(input)
|
|
}
|
|
|
|
TestSSH: {
|
|
suffix: random.#String & {
|
|
seed: ""
|
|
}
|
|
|
|
run: #Run & {
|
|
name: "daggerci-test-ssh-\(suffix.out)"
|
|
ref: "hello-world"
|
|
|
|
ssh: {
|
|
host: TestConfig.host
|
|
user: TestConfig.user
|
|
key: TestConfig.key
|
|
}
|
|
}
|
|
}
|