Move universe integration tests to universe dir.
Signed-off-by: Solomon Hykes <solomon@dagger.io>
This commit is contained in:
30
stdlib/.dagger/env/docker-run-ssh/plan/simple.cue
vendored
Normal file
30
stdlib/.dagger/env/docker-run-ssh/plan/simple.cue
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"dagger.io/docker"
|
||||
"dagger.io/dagger"
|
||||
"dagger.io/random"
|
||||
)
|
||||
|
||||
TestConfig: {
|
||||
host: string @dagger(input)
|
||||
user: string @dagger(input)
|
||||
key: dagger.#Secret @dagger(input)
|
||||
}
|
||||
|
||||
TestSSH: {
|
||||
suffix: random.#String & {
|
||||
seed: ""
|
||||
}
|
||||
|
||||
run: docker.#Run & {
|
||||
name: "daggerci-test-ssh-\(suffix.out)"
|
||||
ref: "hello-world"
|
||||
|
||||
ssh: {
|
||||
host: TestConfig.host
|
||||
user: TestConfig.user
|
||||
key: TestConfig.key
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user