File: repo.cue

package info (click to toggle)
golang-github-cue-labs-oci 0.0~git20241125.2c00c10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 912 kB
  • sloc: makefile: 7
file content (31 lines) | stat: -rw-r--r-- 705 bytes parent folder | download
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",
]