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/tests/tasks/gitPull/private_repo.cue
Richard Jones bd005aeb43
improved test case
Signed-off-by: Richard Jones <richard@dagger.io>
2021-12-22 15:44:16 -07:00

36 lines
662 B
CUE

package main
import "alpha.dagger.io/europa/dagger/engine"
engine.#Plan & {
inputs: secrets: token: command: {
name: "sops"
args: ["exec-env", "./secrets_sops.yaml", "echo $TestPAT"]
}
actions: {
alpine: engine.#Pull & {
source: "alpine:3.15.0"
}
testRepo: engine.#GitPull & {
remote: "https://github.com/dagger/dagger.git"
ref: "main"
auth: {
username: "dagger-test"
password: inputs.secrets.token.contents
}
}
testContent: engine.#Exec & {
input: alpine.output
always: true
args: ["ls", "-l", "/repo/README.md"]
mounts: inputRepo: {
dest: "/repo"
contents: testRepo.output
}
}
}
}