dissertation-2-code/.drone.yml

51 lines
934 B
YAML
Raw Normal View History

2020-10-25 22:05:35 +00:00
kind: pipeline
type: docker
name: default
steps:
- name: install
image: golang:1.15
2020-10-30 22:48:30 +00:00
environment:
GOPROXY: http://10.20.0.25:3142|direct
2020-10-25 22:05:35 +00:00
volumes:
- name: cache
path: /go
commands:
2020-10-25 22:06:33 +00:00
- go test -i ./...
2020-10-25 22:05:35 +00:00
- name: test
image: golang:1.15
volumes:
- name: cache
path: /go
commands:
2020-10-25 22:06:33 +00:00
- go test ./...
2020-10-25 22:05:35 +00:00
2020-11-04 20:23:44 +00:00
- name: build (debian)
image: golang:1.15-buster
2020-11-04 20:26:38 +00:00
when:
event:
- push
2020-11-04 20:23:44 +00:00
volumes:
- name: cache
path: /go
commands:
- go build
- name: upload
image: minio/mc
when:
event:
- push
environment:
ACCESS_KEY: 001f185da4dcda3000000000d
SECRET_KEY:
from_secret: s3_secret_key
commands:
- mc alias set s3 http://10.20.0.25:3900 $${ACCESS_KEY} $${SECRET_KEY}
- mc cp mpbl3p s3/dissertation/binaries/debian/${DRONE_BRANCH}
2020-10-25 22:05:35 +00:00
volumes:
- name: cache
temp: {}