docmachine-utils/.drone.yml

38 lines
794 B
YAML
Raw Normal View History

2023-02-21 15:06:03 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: Build
image: crystallang/crystal:1.7.1
volumes:
- name: cache
2023-02-21 15:14:25 +00:00
path: /_cache
2023-02-21 15:06:03 +00:00
commands:
- pwd
- apt-get update && apt-get install -y cmake g++
- shards install
- shards build
2023-02-21 15:14:25 +00:00
- mkdir -p /_cache/bin
- cp -r bin/docmachine /_cache/bin
- name: Publish
image: curlimages/curl
volumes:
- name: cache
path: /_cache
commands:
- |
curl --user your_username:your_password_or_token \
--upload-file /_cache/bin/docmachine \
https://code.apps.glenux.net/api/packages/glenux/generic/docmachine-utils/1.0.0/docmachine
# FIXME: handle multi-arch
# FIXME: publish only on tags
2023-02-21 15:06:03 +00:00
volumes:
- name: cache
temp: {}
#