Drone
Last updated
package main
import "fmt"
func main(){
fmt.Printf("Hello World!\n");
}kind: pipeline
type: docker
name: build
steps:
- name: build
image: golang:alpine
pull: if-not-exists # always never
environment:
KEY: VALUE
commands:
- echo $KEY
- pwd
- ls
- CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
- ./app
trigger:
branch:
- master.
├── .drone.yml
└── app.go$ git add .
$ git commit -m "test drone ci"
$ git push origin master