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/.dagger/env/dev/main.cue
Solomon Hykes 355505d0aa devenv: comments, pin alpine to digest
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
2021-04-30 18:12:08 -07:00

90 lines
1.5 KiB
CUE

// A dagger workflow to develop dagger
package main
import (
"dagger.io/dagger"
"dagger.io/io"
"dagger.io/alpine"
"dagger.io/docker"
)
// Dagger source code
source: dagger.#Artifact
test: {
// Go unit tests
unit: {
logs: (io.#File & {
from: build.ctr
path: "/test.log"
read: format: "string"
}).read.data
}
// Full suite of bats integration tests
integration: {
// FIXME
}
}
// Build the dagger binaries
build: {
ctr: docker.#Container & {
image: docker.#ImageFromRegistry & {
ref: "docker.io/golang:1.16-alpine@\(digest)"
// FIXME: this digest is arch-specific (amd64)
let digest="sha256:6600d9933c681cb38c13c2218b474050e6a9a288ac62bdb23aee13bc6dedce18"
}
setup: [
"apk add --no-cache file",
]
command: """
go test -v ./... > /test.log
go build -o /binaries/ ./cmd/... > /build.log
"""
volume: {
daggerSource: {
from: source
dest: "/src"
}
goCache: {
type: "cache"
dest: "/root/.cache/gocache"
}
}
// Add go to search path (FIXME: should be inherited from image metadata)
shell: search: "/usr/local/go/bin": true
env: {
GOMODCACHE: volume.goCache.dest
CGO_ENABLED: "0"
}
dir: "/src"
}
binaries: docker.#Container & {
image: ctr
outputDir: "/binaries"
}
}
// Execute `dagger help`
usage: docker.#Container & {
image: alpine.#Image
command: "dagger help"
volume: binaries: {
from: build.binaries
dest: "/usr/local/dagger/bin/"
}
shell: search: "/usr/local/dagger/bin": true
}