Switch to glibc build
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Armin Friedl 2020-02-23 20:56:29 +01:00
parent 06532ba81f
commit 6a2aa756ca
Signed by: armin
GPG key ID: 48C726EEE7FBCBC8
2 changed files with 12 additions and 12 deletions

View file

@ -20,20 +20,20 @@ type: docker
name: release name: release
steps: steps:
- name: build-musl - name: build
image: arminfriedl/xwim-build image: arminfriedl/xwim-build
commands: commands:
- LDFLAGS="-static-libstdc++ -static-libgcc" meson --buildtype=release build - meson --buildtype=release build
- ninja -C build - ninja -C build
- mkdir xwim-${DRONE_TAG}-x86_64-musl-linux - mkdir xwim-${DRONE_TAG}-x86_64-glibc-linux
- mv build/src/xwim xwim-${DRONE_TAG}-x86_64-musl-linux - mv build/src/xwim xwim-${DRONE_TAG}-x86_64-glibc-linux
- name: package - name: package
image: arminfriedl/xwim-build image: arminfriedl/xwim-build
commands: commands:
- tar cjf xwim-${DRONE_TAG}-x86_64-musl-linux.tar.bz2 xwim-${DRONE_TAG}-x86_64-musl-linux/xwim - tar cjf xwim-${DRONE_TAG}-x86_64-glibc-linux.tar.bz2 xwim-${DRONE_TAG}-x86_64-glibc-linux/xwim
- tar czf xwim-${DRONE_TAG}-x86_64-musl-linux.tar.gz xwim-${DRONE_TAG}-x86_64-musl-linux/xwim - tar czf xwim-${DRONE_TAG}-x86_64-glibc-linux.tar.gz xwim-${DRONE_TAG}-x86_64-glibc-linux/xwim
- zip -r xwim-${DRONE_TAG}-x86_64-musl-linux.zip xwim-${DRONE_TAG}-x86_64-musl-linux - zip -r xwim-${DRONE_TAG}-x86_64-glibc-linux.zip xwim-${DRONE_TAG}-x86_64-glibc-linux
- name: publish - name: publish
image: plugins/gitea-release image: plugins/gitea-release
@ -42,9 +42,9 @@ steps:
api_key: api_key:
from_secret: gitea_token from_secret: gitea_token
files: files:
- xwim-${DRONE_TAG}-x86_64-musl-linux.tar.bz2 - xwim-${DRONE_TAG}-x86_64-glibc-linux.tar.bz2
- xwim-${DRONE_TAG}-x86_64-musl-linux.tar.gz - xwim-${DRONE_TAG}-x86_64-glibc-linux.tar.gz
- xwim-${DRONE_TAG}-x86_64-musl-linux.zip - xwim-${DRONE_TAG}-x86_64-glibc-linux.zip
title: xwim ${DRONE_TAG} title: xwim ${DRONE_TAG}
checksum: checksum:
- md5 - md5

View file

@ -8,7 +8,7 @@ inc = ['archive.hpp',
'fileformats.hpp'] 'fileformats.hpp']
libs = [dependency('libarchive', required: true), libs = [dependency('libarchive', required: true),
dependency('fmt', required: true), dependency('fmt', required: true, static: true),
dependency('spdlog', required: true)] dependency('spdlog', required: true, static: true)]
executable('xwim', src, inc, dependencies: libs) executable('xwim', src, inc, dependencies: libs)