2023-02-21 16:06:03 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2023-03-21 22:29:05 +01:00
|
|
|
- name: build:binary
|
2023-02-21 16:06:03 +01:00
|
|
|
image: crystallang/crystal:1.7.1
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
2023-02-21 16:14:25 +01:00
|
|
|
path: /_cache
|
2023-02-21 16:06:03 +01:00
|
|
|
commands:
|
|
|
|
- pwd
|
|
|
|
- apt-get update && apt-get install -y cmake g++
|
|
|
|
- shards install
|
2023-03-21 21:09:34 +01:00
|
|
|
- shards build --production --static
|
2023-03-21 21:17:03 +01:00
|
|
|
- strip bin/docmachine
|
2023-02-21 16:14:25 +01:00
|
|
|
- mkdir -p /_cache/bin
|
|
|
|
- cp -r bin/docmachine /_cache/bin
|
|
|
|
|
2023-03-21 22:29:05 +01:00
|
|
|
- name: publish:tag
|
2023-02-21 16:14:25 +01:00
|
|
|
image: curlimages/curl
|
2023-03-21 18:21:28 +01:00
|
|
|
environment:
|
2023-03-21 22:29:05 +01:00
|
|
|
PACKAGE_UPLOAD_URL: https://code.apps.glenux.net/api/packages/glenux/generic/docmachine-utils
|
|
|
|
PACKAGE_BASENAME: docmachine
|
|
|
|
PACKAGE_UPLOAD_TOKEN:
|
|
|
|
from_secret: PACKAGE_UPLOAD_TOKEN
|
2023-03-21 18:26:05 +01:00
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
include:
|
|
|
|
- refs/tags/**
|
2023-02-21 16:14:25 +01:00
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /_cache
|
|
|
|
commands:
|
2023-02-21 16:18:36 +01:00
|
|
|
- env |grep DRONE
|
2023-02-21 16:14:25 +01:00
|
|
|
- |
|
2023-03-21 22:29:05 +01:00
|
|
|
curl -H "Authorization: token $PACKAGE_UPLOAD_TOKEN" \
|
2023-02-21 16:14:25 +01:00
|
|
|
--upload-file /_cache/bin/docmachine \
|
2023-03-21 22:29:05 +01:00
|
|
|
$PACKAGE_UPLOAD_URL/$DRONE_TAG/$PACKAGE_BASENAME
|
2023-02-21 16:14:25 +01:00
|
|
|
|
|
|
|
# FIXME: handle multi-arch
|
|
|
|
# FIXME: publish only on tags
|
2023-02-21 16:06:03 +01:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|
|
|
|
#
|