mark2web/.drone.yml
Sebastian Frank 7b124a48af
Some checks failed
the build failed
RELEASE note
2019-02-20 09:54:10 +01:00

94 lines
1.8 KiB
YAML

workspace:
base: /go
path: src/gitbase.de/apairon/mark2web
pipeline:
build_mark2web_linux:
image: golang:latest
environment:
- CGO_ENABLED=0
- GOOS=linux
- GOARCH=amd64
commands:
- ./build.sh
test_example:
image: alpine
commands:
- ./dist/mark2web-`cat version`-linux-amd64 -version
- ./dist/mark2web-`cat version`-linux-amd64 -in example -out example_out -create -logLevel debug
build_mark2web_freebsd:
image: golang:latest
environment:
- CGO_ENABLED=0
- GOOS=freebsd
- GOARCH=amd64
commands:
- ./build.sh
when:
branch: master
event: push
build_mark2web_darwin:
image: golang:latest
environment:
- CGO_ENABLED=0
- GOOS=darwin
- GOARCH=amd64
commands:
- ./build.sh
when:
branch: master
event: push
build_mark2web_windows:
image: golang:latest
environment:
- CGO_ENABLED=0
- GOOS=windows
- GOARCH=amd64
- FILEEXT=.exe
commands:
- ./build.sh
when:
branch: master
event: push
build_docker:
image: docker
commands:
- docker build -t apairon/mark2web .
volumes:
- /var/run/docker.sock:/var/run/docker.sock
when:
branch: master
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/
gitea_relase:
image: plugins/gitea-release
base_url: https://gitbase.de
files:
- dist/*
title: VERSION
note: RELEASE
checksum:
- md5
- sha256
when:
event: tag