1
0
Fork 0
forked from glenux/mfm

Merge branch 'release/v0.1.1'

This commit is contained in:
Glenn Y. Rolland 2023-10-25 14:29:06 +02:00
commit d4c0c8f4ff

View file

@ -6,17 +6,20 @@ name: default
steps: steps:
- name: build:binary - name: build:binary
image: crystallang/crystal:1.7.3 image: crystallang/crystal:1.7.3
environment:
PACKAGE_BASENAME: mfm_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++ libevent-dev libpcre3-dev libyaml-dev - apt-get update &&
apt-get install -y cmake g++ libevent-dev libpcre3-dev libyaml-dev
- shards install - shards install
- shards build --production --static - shards build --production --static
- strip bin/mfm - strip bin/mfm
- mkdir -p /_cache/bin - mkdir -p /_cache/bin
- cp -r bin/mfm /_cache/bin/mfm_linux_amd64 - cp -r bin/mfm /_cache/bin/$PACKAGE_BASENAME
- name: publish:tag - name: publish:tag
image: curlimages/curl image: curlimages/curl
@ -36,7 +39,7 @@ steps:
- env |grep DRONE - env |grep DRONE
- | - |
curl -H "Authorization: token $PACKAGE_UPLOAD_TOKEN" \ curl -H "Authorization: token $PACKAGE_UPLOAD_TOKEN" \
--upload-file /_cache/bin/mfm_amd64 \ --upload-file /_cache/bin/$PACKAGE_BASENAME \
$PACKAGE_UPLOAD_URL/$DRONE_TAG/$PACKAGE_BASENAME $PACKAGE_UPLOAD_URL/$DRONE_TAG/$PACKAGE_BASENAME
# FIXME: handle multi-arch # FIXME: handle multi-arch