19 lines
No EOL
384 B
CUE
19 lines
No EOL
384 B
CUE
#Spec: {
|
|
app: #AppName
|
|
semver?: bool
|
|
channels: [...#Channels]
|
|
}
|
|
|
|
#Channels: {
|
|
name: #ChannelName
|
|
platforms: [...#Platforms]
|
|
stable: bool
|
|
tests: {
|
|
enabled: bool
|
|
type?: =~"^(cli|web)$"
|
|
}
|
|
}
|
|
|
|
#AppName: string & !="" & =~"^[a-zA-Z0-9_-]+$"
|
|
#ChannelName: string & !="" & =~"^[a-zA-Z0-9._-]+$"
|
|
#Platforms: "linux/amd64" | "linux/arm64" |