core/.drone.yml

35 lines
694 B
YAML
Raw Normal View History

2023-12-12 22:55:19 +00:00
kind: pipeline
2023-12-12 22:59:18 +00:00
type: docker
2023-12-12 22:55:19 +00:00
name: default
steps:
2023-12-12 22:59:18 +00:00
- name: greeting
image: alpine
commands:
- echo hello
- echo world
2023-12-12 22:55:19 +00:00
- name: test
image: golang
volumes:
- name: deps
path: /go
commands:
- go test ./...
- name: build
image: golang
volumes:
- name: deps
path: /go
commands:
- go build ./...
2023-12-13 21:31:33 +00:00
- name: notify
image: pluie/alpine
commands:
2023-12-13 21:36:08 +00:00
- curl -k -X POST https://zulip.meta-tech.academy/api/v1/messages -u drone-bot@zulip.meta-tech.academy:iIm8Hc2VuvK06iDxUODUIndlRu6As6bO --data-urlencode type=stream --data-urlencode 'to="gitea"' --data-urlencode topic=build --data-urlencode content=" build commit {{build.commit}}"
2023-12-13 21:31:33 +00:00
2023-12-12 22:55:19 +00:00
volumes:
- name: deps
temp: {}