This commit is contained in:
parent
299f66d62c
commit
edd4952537
1 changed files with 12 additions and 4 deletions
16
.drone.yml
16
.drone.yml
|
@ -5,24 +5,32 @@ name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build:binary
|
- name: build:binary
|
||||||
image: crystallang/crystal:1.7.1
|
image: crystallang/crystal:1.11.0-alpine
|
||||||
|
environment:
|
||||||
|
PACKAGE_BASENAME: docmachine_linux_amd64
|
||||||
volumes:
|
volumes:
|
||||||
- name: cache
|
- name: cache
|
||||||
path: /_cache
|
path: /_cache
|
||||||
commands:
|
commands:
|
||||||
- pwd
|
- pwd
|
||||||
- apt-get update && apt-get install -y cmake g++ libreadline-dev liblzma-dev
|
# - |
|
||||||
|
# apt-get update && \
|
||||||
|
# apt-get install -y \
|
||||||
|
# cmake g++ \
|
||||||
|
# libevent-dev libpcre3-dev \
|
||||||
|
# libyaml-dev liblzma-dev
|
||||||
- shards install
|
- shards install
|
||||||
- shards build --production --static
|
- shards build --production --static
|
||||||
- strip bin/docmachine
|
- strip bin/docmachine
|
||||||
|
- ./bin/docmachine --version
|
||||||
- mkdir -p /_cache/bin
|
- mkdir -p /_cache/bin
|
||||||
- cp -r bin/docmachine /_cache/bin
|
- cp -r bin/docmachine /_cache/bin/$PACKAGE_BASENAME
|
||||||
|
|
||||||
- name: publish:tag
|
- name: publish:tag
|
||||||
image: curlimages/curl
|
image: curlimages/curl
|
||||||
environment:
|
environment:
|
||||||
PACKAGE_UPLOAD_URL: https://code.apps.glenux.net/api/packages/glenux/generic/docmachine-utils
|
PACKAGE_UPLOAD_URL: https://code.apps.glenux.net/api/packages/glenux/generic/docmachine-utils
|
||||||
PACKAGE_BASENAME: docmachine
|
PACKAGE_BASENAME: docmachine_linux_amd64
|
||||||
PACKAGE_UPLOAD_TOKEN:
|
PACKAGE_UPLOAD_TOKEN:
|
||||||
from_secret: PACKAGE_UPLOAD_TOKEN
|
from_secret: PACKAGE_UPLOAD_TOKEN
|
||||||
when:
|
when:
|
||||||
|
|
Loading…
Reference in a new issue