0f69f3a8af
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
97 lines
1.4 KiB
CUE
97 lines
1.4 KiB
CUE
package gcr
|
|
|
|
import (
|
|
"dagger.io/gcp"
|
|
"dagger.io/gcp/gcr"
|
|
"dagger.io/alpine"
|
|
"dagger.io/dagger/op"
|
|
)
|
|
|
|
TestConfig: gcpConfig: gcp.#Config
|
|
|
|
// Generate a random number
|
|
random: {
|
|
string
|
|
#up: [
|
|
op.#Load & {from: alpine.#Image},
|
|
op.#Exec & {
|
|
args: ["sh", "-c", "cat /dev/urandom | tr -dc 'a-z' | fold -w 10 | head -n 1 | tr -d '\n' > /rand"]
|
|
},
|
|
op.#Export & {
|
|
source: "/rand"
|
|
},
|
|
]
|
|
}
|
|
|
|
TestGCR: {
|
|
repository: "gcr.io/dagger-ci/test"
|
|
tag: "test-gcr-\(random)"
|
|
|
|
creds: gcr.#Credentials & {
|
|
config: TestConfig.gcpConfig
|
|
}
|
|
|
|
push: {
|
|
ref: "\(repository):\(tag)"
|
|
|
|
#up: [
|
|
op.#DockerBuild & {
|
|
dockerfile: """
|
|
FROM alpine
|
|
RUN echo \(random) > /test
|
|
"""
|
|
},
|
|
|
|
op.#DockerLogin & {
|
|
target: repository
|
|
username: creds.username
|
|
secret: creds.secret
|
|
},
|
|
|
|
op.#PushContainer & {
|
|
"ref": ref
|
|
},
|
|
]
|
|
}
|
|
|
|
pull: #up: [
|
|
op.#DockerLogin & {
|
|
target: push.ref
|
|
username: creds.username
|
|
secret: creds.secret
|
|
},
|
|
|
|
op.#FetchContainer & {
|
|
ref: push.ref
|
|
},
|
|
]
|
|
|
|
verify: #up: [
|
|
op.#Load & {
|
|
from: pull
|
|
},
|
|
|
|
op.#Exec & {
|
|
always: true
|
|
args: [
|
|
"sh", "-c", "test $(cat test) = \(random)",
|
|
]
|
|
},
|
|
]
|
|
|
|
verifyBuild: #up: [
|
|
op.#DockerLogin & {
|
|
target: push.ref
|
|
username: creds.username
|
|
secret: creds.secret
|
|
},
|
|
|
|
op.#DockerBuild & {
|
|
dockerfile: #"""
|
|
FROM \#(push.ref)
|
|
RUN test $(cat test) = \#(random)
|
|
"""#
|
|
},
|
|
]
|
|
}
|