commit 9373fb62e48d136e8419461d0c56f8a2b1dc18e2 Author: kjuulh Date: Fri Oct 28 23:36:54 2022 +0200 Add initial diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..9362fbb --- /dev/null +++ b/.drone.yml @@ -0,0 +1,9 @@ +type: docker +kind: pipeline +name: "drone-dagger-test" + +steps: + - name: "build" + image: harbor.front.kjuulh.io/docker-proxy/library/golang + commands: + - "go run main.go" diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..715fdcd --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module drone-dagger-test + +go 1.19 diff --git a/main.go b/main.go new file mode 100644 index 0000000..1a04355 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Printf("hello, world!") +}