42 lines
667 B
Go
42 lines
667 B
Go
package go_coverter
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/drone/drone-go/plugin/config"
|
|
|
|
"github.com/drone/drone-go/drone"
|
|
)
|
|
|
|
const defaultPipeline = `
|
|
kind: pipeline
|
|
name: default
|
|
steps:
|
|
- name: build
|
|
image: golang
|
|
commands:
|
|
- go build
|
|
- go test -v
|
|
`
|
|
|
|
// New returns a new conversion plugin.
|
|
func New() config.Plugin {
|
|
return &plugin{}
|
|
}
|
|
|
|
type plugin struct{}
|
|
|
|
func (p *plugin) Find(ctx context.Context, req *config.Request) (*drone.Config, error) {
|
|
resp, err := json.Marshal(req)
|
|
if err != nil {
|
|
fmt.Printf("%+v", err)
|
|
return nil, err
|
|
}
|
|
fmt.Printf("%s", string(resp))
|
|
return &drone.Config{
|
|
Data: defaultPipeline,
|
|
}, nil
|
|
}
|