mark2web/.drone.yml

94 lines
1.8 KiB
YAML
Raw Normal View History

2019-02-14 13:54:08 +01:00
workspace:
base: /go
path: src/gitbase.de/apairon/mark2web
pipeline:
2019-02-20 09:02:54 +01:00
build_mark2web_linux:
2019-02-14 13:54:08 +01:00
image: golang:latest
2019-02-20 09:02:54 +01:00
environment:
- CGO_ENABLED=0
- GOOS=linux
- GOARCH=amd64
2019-02-14 13:54:08 +01:00
commands:
2019-02-18 13:12:18 +01:00
- ./build.sh
2019-02-14 13:54:08 +01:00
2019-02-20 09:12:25 +01:00
test_example:
2019-02-14 13:54:08 +01:00
image: alpine
commands:
2019-02-20 09:54:10 +01:00
- ./dist/mark2web-`cat version`-linux-amd64 -version
- ./dist/mark2web-`cat version`-linux-amd64 -in example -out example_out -create -logLevel debug
2019-02-20 09:12:25 +01:00
build_mark2web_freebsd:
image: golang:latest
environment:
- CGO_ENABLED=0
- GOOS=freebsd
- GOARCH=amd64
commands:
- ./build.sh
when:
branch: master
event: push
2019-02-20 09:54:10 +01:00
build_mark2web_darwin:
image: golang:latest
environment:
- CGO_ENABLED=0
- GOOS=darwin
- GOARCH=amd64
commands:
- ./build.sh
when:
branch: master
event: push
2019-02-20 09:12:25 +01:00
build_mark2web_windows:
image: golang:latest
environment:
- CGO_ENABLED=0
- GOOS=windows
- GOARCH=amd64
- FILEEXT=.exe
commands:
- ./build.sh
when:
branch: master
event: push
2019-02-14 14:21:17 +01:00
build_docker:
image: docker
commands:
- docker build -t apairon/mark2web .
volumes:
- /var/run/docker.sock:/var/run/docker.sock
when:
branch: master
2019-02-20 09:12:25 +01:00
event: push
deploy_website:
image: apairon/mark2web:latest
commands:
- /mark2web -version
- /mark2web -in website -out html -create -logLevel debug
when:
branch: master
event: push
prepare_release:
image: apairon/mark2web:latest
commands:
- gzip dist/*
- ls -la dist/
2019-02-20 09:54:10 +01:00
gitea_relase:
image: plugins/gitea-release
base_url: https://gitbase.de
files:
- dist/*
title: VERSION
note: RELEASE
checksum:
- md5
- sha256
when:
event: tag