a4e31949a3
Signed-off-by: Solomon Hykes <solomon@dagger.io>
35 lines
479 B
CUE
35 lines
479 B
CUE
package go
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"dagger.io/go"
|
|
"dagger.io/alpine"
|
|
"dagger.io/dagger/op"
|
|
)
|
|
|
|
TestData: dagger.#Artifact @dagger(input)
|
|
|
|
TestGoBuild: {
|
|
build: go.#Build & {
|
|
source: TestData
|
|
output: "/bin/testbin"
|
|
}
|
|
|
|
test: #up: [
|
|
op.#Load & {from: alpine.#Image},
|
|
op.#Exec & {
|
|
args: [
|
|
"sh",
|
|
"-ec",
|
|
"""
|
|
test "$(/bin/testbin)" = "hello world"
|
|
""",
|
|
]
|
|
mount: "/bin/testbin": {
|
|
from: build
|
|
path: "/bin/testbin"
|
|
}
|
|
},
|
|
]
|
|
}
|