This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/go/go.cue
Solomon Hykes 6460a5c9fc Rename dagger.#Dir to dagger.#Artifact
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
2021-03-13 00:11:59 -08:00

95 lines
1.4 KiB
CUE

package go
import (
"dagger.io/dagger"
)
#Go: {
// Go version to use
version: *"1.16" | string
// Arguments to the Go binary
args: [...string]
// Source Directory to build
source: dagger.#Artifact
// Environment variables
env: [string]: string
#compute: [
dagger.#FetchContainer & {
ref: "docker.io/golang:\(version)-alpine"
},
dagger.#Exec & {
"args": ["go"] + args
"env": env
"env": CGO_ENABLED: "0"
dir: "/src"
mount: "/src": from: source
mount: "/root/.cache": "cache"
},
]
}
#Build: {
// Go version to use
version: *#Go.version | string
// Source Directory to build
source: dagger.#Artifact
// Packages to build
packages: *"." | string
// Target architecture
arch: *"amd64" | string
// Target OS
os: *"linux" | string
// Build tags to use for building
tags: *"" | string
// LDFLAGS to use for linking
ldflags: *"" | string
// Specify the targeted binary name
output: string
env: [string]: string
#compute: [
dagger.#Copy & {
from: #Go & {
"version": version
"source": source
"env": env
args: ["build", "-v", "-tags", tags, "-ldflags", ldflags, "-o", output, packages]
}
src: output
dest: output
},
]
}
#Test: {
// Go version to use
version: *#Go.version | string
// Source Directory to build
source: dagger.#Artifact
// Packages to test
packages: *"." | string
#Go & {
"version": version
"source": source
args: ["test", "-v", packages]
}
}