drone / drone-runtime

[DEPRECATED] migrated to https://github.com/drone-runners
Other
62 stars 43 forks source link

Use standard drone config similar to other drone libs #50

Open tboerger opened 5 years ago

CLAassistant commented 5 years ago

CLA assistant check
All committers have signed the CLA.

bradrydzewski commented 5 years ago

I think we could simplify to this:

---
kind: pipeline
name: testing

platform:
  os: linux
  arch: amd64

steps:
- name: test
  image: golang:1.11
  commands:
  - go vet ./...
  - go test -cover ./...

I know the plugins follow different conventions, but the plugins tend to have very complex pipelines (multi-os, multi-arch, docker builds, etc). For libraries I think we can keep things simple.

tboerger commented 5 years ago

Not exactly like you defined it, but I have simplified the pipeline now.