mfm/.drone.yml

49 lines
1.1 KiB
YAML
Raw Normal View History

2023-10-25 12:11:28 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: build:binary
image: crystallang/crystal:1.7.3
volumes:
- name: cache
path: /_cache
commands:
- pwd
- apt-get update && apt-get install -y cmake g++ libevent-dev libpcre3-dev libyaml-dev
2023-10-25 12:11:28 +00:00
- shards install
- shards build --production --static
2023-10-25 12:18:07 +00:00
- strip bin/mfm
2023-10-25 12:11:28 +00:00
- mkdir -p /_cache/bin
2023-10-25 12:18:07 +00:00
- cp -r bin/mfm /_cache/bin/mfm_linux_amd64
2023-10-25 12:11:28 +00:00
- name: publish:tag
image: curlimages/curl
environment:
PACKAGE_UPLOAD_URL: https://code.apps.glenux.net/api/packages/glenux/generic/mfm
2023-10-25 12:18:07 +00:00
PACKAGE_BASENAME: mfm_linux_amd64
2023-10-25 12:11:28 +00:00
PACKAGE_UPLOAD_TOKEN:
from_secret: PACKAGE_UPLOAD_TOKEN
when:
ref:
include:
- refs/tags/**
volumes:
- name: cache
path: /_cache
commands:
- env |grep DRONE
- |
curl -H "Authorization: token $PACKAGE_UPLOAD_TOKEN" \
2023-10-25 12:18:07 +00:00
--upload-file /_cache/bin/mfm_amd64 \
2023-10-25 12:11:28 +00:00
$PACKAGE_UPLOAD_URL/$DRONE_TAG/$PACKAGE_BASENAME
# FIXME: handle multi-arch
# FIXME: publish only on tags
volumes:
- name: cache
temp: {}
#