2fbb9e7744
Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
34 lines
478 B
CUE
34 lines
478 B
CUE
package go
|
|
|
|
import (
|
|
"alpha.dagger.io/dagger"
|
|
"alpha.dagger.io/alpine"
|
|
"alpha.dagger.io/dagger/op"
|
|
)
|
|
|
|
TestData: dagger.#Artifact @dagger(input)
|
|
|
|
TestGoBuild: {
|
|
build: #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"
|
|
}
|
|
},
|
|
]
|
|
}
|