From c6cd759a8c14af83cda312b6b148c9ae01cbbb37 Mon Sep 17 00:00:00 2001 From: CismonX Date: Sat, 5 Aug 2023 21:40:57 +0800 Subject: [PATCH] chore: update ci script * Install individual packages instead of build-essential * Add `make dist` --- .drone.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 152557f..18f8d38 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,7 +15,7 @@ steps: image: debian:bookworm-slim commands: - apt-get -y update && apt-get -y install - build-essential pkgconf autoconf automake libtool + gcc g++ make pkgconf autoconf automake libtool autoconf-archive dejagnu texinfo libreadline-dev librime-dev - mkdir build && cd build && autoreconf -i .. - ../configure --with-readline --with-rime --enable-arif-debug @@ -23,3 +23,4 @@ steps: CPPFLAGS='-D_POSIX_C_SOURCE=200112L' - make - make check + - make dist