xwim/.drone.yml
Armin Friedl f80dc1decd
All checks were successful
continuous-integration/drone/push Build is passing
Strip release
2021-02-24 22:23:14 +01:00

74 lines
1.8 KiB
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build-shared
image: arminfriedl/xwim-build:shared
commands:
- meson target/shared
- ninja -C target/shared
- name: build-static
image: arminfriedl/xwim-build:static
commands:
- meson --default-library=static target/static
- ninja -C target/static
trigger:
event:
exclude:
- tag
---
kind: pipeline
type: docker
name: release
steps:
- name: build-shared
image: arminfriedl/xwim-build:shared
commands:
- meson --buildtype=release target/shared
- ninja -C target/shared
- strip target/static/src/xwim
- mkdir xwim-${DRONE_TAG}-x86_64-glibc-linux-shared
- mv target/shared/src/xwim xwim-${DRONE_TAG}-x86_64-glibc-linux-shared
- name: build-static
image: arminfriedl/xwim-build:static
commands:
- meson --buildtype=release --default-library=static target/static
- ninja -C target/static
- strip target/static/src/xwim
- mkdir xwim-${DRONE_TAG}-x86_64-musl-linux-static
- mv target/static/src/xwim xwim-${DRONE_TAG}-x86_64-musl-linux-static
- name: package
image: arminfriedl/xwim-build
commands:
- tar czf xwim-${DRONE_TAG}-x86_64-glibc-linux-shared.tar.gz xwim-${DRONE_TAG}-x86_64-glibc-linux-shared/xwim
- tar czf xwim-${DRONE_TAG}-x86_64-musl-linux-static.tar.gz xwim-${DRONE_TAG}-x86_64-musl-linux-static/xwim
depends_on:
- build-shared
- build-static
- name: publish
image: plugins/gitea-release
settings:
base_url: https://git.friedl.net
api_key:
from_secret: gitea_token
files:
- xwim-${DRONE_TAG}-x86_64-glibc-linux-shared.tar.gz
- xwim-${DRONE_TAG}-x86_64-musl-linux-static.tar.gz
title: xwim ${DRONE_TAG}
checksum:
- md5
- sha256
depends_on:
- package
trigger:
event:
- tag