This commit is contained in:
parent
e88f1b773f
commit
b0f3e3e6ff
@ -6,5 +6,5 @@ steps:
|
|||||||
- name: "build"
|
- name: "build"
|
||||||
image: harbor.front.kjuulh.io/docker-proxy/library/golang:latest
|
image: harbor.front.kjuulh.io/docker-proxy/library/golang:latest
|
||||||
commands:
|
commands:
|
||||||
- "go run main.go"
|
- "go run main.go https://github.com/kpenfound/greetings-api.git"
|
||||||
- "go test ./..."
|
- "go test ./..."
|
||||||
|
2
go.mod
2
go.mod
@ -1,3 +1,5 @@
|
|||||||
module drone-dagger-test
|
module drone-dagger-test
|
||||||
|
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
|
replace github.com/docker/docker => github.com/docker/docker v20.10.3-0.20220414164044-61404de7df1a+incompatible
|
||||||
|
30
main.go
30
main.go
@ -1,7 +1,35 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import "fmt"
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Printf("hello, world!\n")
|
fmt.Printf("hello, world!\n")
|
||||||
|
|
||||||
|
if len(os.Args) < 2 {
|
||||||
|
fmt.Println("must pass in a git repo to build")
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
repo := os.Args[1]
|
||||||
|
if err := build(repo); err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func build(repoUrl string) error {
|
||||||
|
fmt.Printf("Building %s\n", repoUrl)
|
||||||
|
|
||||||
|
// 1. Get a context
|
||||||
|
ctx := context.Background()
|
||||||
|
// 2. Initialize dagger client
|
||||||
|
client, err := dagger.Connect(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer client.Close()
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user