mark2web/.drone.yml

74 lines
1.4 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-14 13:56:30 +01:00
- ls -la
2019-02-20 09:02:54 +01:00
- ./dist/mark2web-linux-amd64 -version
2019-02-20 09:12:25 +01:00
- ./dist/mark2web-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_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:
- ls -la
- /mark2web -version
- /mark2web -in website -out html -create -logLevel debug
when:
branch: master
event: push
prepare_release:
image: apairon/mark2web:latest
commands:
- ls -la dist/
- gzip dist/*
- ls -la dist/