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