This commit is contained in:
parent
9cea95c6a3
commit
b532ee234c
@ -3,7 +3,7 @@ kind: pipeline
|
||||
name: "shuttle-drone-templates"
|
||||
steps:
|
||||
- name: "build"
|
||||
image: docker.io/kasperhermansen/shuttle-drone:1680891892542
|
||||
image: docker.io/kasperhermansen/shuttle-drone:1680892391631
|
||||
volumes:
|
||||
- name: dockersock
|
||||
path: /var/run
|
||||
|
@ -34,6 +34,15 @@ func Build(ctx context.Context) error {
|
||||
|
||||
ctx = context.Background()
|
||||
|
||||
shuttleGit := client.
|
||||
Git("git@github.com:kjuulh/shuttle.git", dagger.GitOpts{
|
||||
KeepGitDir: true,
|
||||
}).
|
||||
Branch("shuttletask").
|
||||
Tree(dagger.GitRefTreeOpts{
|
||||
SSHAuthSocket: client.Host().UnixSocket(os.Getenv("SSH_AUTH_SOCK")),
|
||||
})
|
||||
|
||||
for _, platform := range platforms {
|
||||
platform := platform
|
||||
|
||||
@ -42,13 +51,6 @@ func Build(ctx context.Context) error {
|
||||
|
||||
golangDir := golang.Directory("/usr/local/go")
|
||||
|
||||
shuttleGit := client.
|
||||
Git("git@github.com:kjuulh/shuttle.git").
|
||||
Branch("shuttletask").
|
||||
Tree(dagger.GitRefTreeOpts{
|
||||
SSHAuthSocket: client.Host().UnixSocket(os.Getenv("SSH_AUTH_SOCK")),
|
||||
})
|
||||
|
||||
shuttleImg := golang.
|
||||
WithDirectory("/app", shuttleGit).
|
||||
WithWorkdir("/app").
|
||||
|
@ -2,7 +2,7 @@ module shuttletask
|
||||
|
||||
go 1.20
|
||||
|
||||
replace github.com/lunarway/shuttle => github.com/kjuulh/shuttle v0.0.0-20230407181904-c33b3e1dae47
|
||||
replace github.com/lunarway/shuttle => github.com/kjuulh/shuttle v0.0.0-20230407180512-4877329375cb
|
||||
|
||||
require (
|
||||
dagger.io/dagger v0.6.0
|
||||
|
Loading…
Reference in New Issue
Block a user