1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
// package repo contains data values that are common to all CUE configurations
// in this repo. The list of configurations includes GitHub workflows, but also
// things like gerrit configuration etc.
package repo
import (
"cuelabs.dev/go/oci/internal/ci/base"
)
base
githubRepositoryPath: "cue-labs/oci"
botGitHubUser: "porcuepine"
botGitHubUserEmail: "cue.porcuepine@gmail.com"
defaultBranch: "main"
linuxMachine: "ubuntu-22.04"
latestGo: "1.22.x"
// modules is a list of Unix paths of go.mod files for go modules in this
// repository
modules: [...string]
modules: [
"./cmd/ocisrv/go.mod",
"./ociregistry/internal/conformance/go.mod",
"./ociregistry/go.mod",
"./internal/ci/go.mod",
]
|