From 0b316efb600e59bb1072683b0064b82551b878f7 Mon Sep 17 00:00:00 2001 From: CismonX Date: Mon, 20 Feb 2023 13:45:46 +0800 Subject: [PATCH] chore: update ci script * change runner container image to debian * build with librime --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 7e2cde8..1aca1d0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,14 +12,14 @@ name: default steps: - name: build - image: pureos/byzantium + image: debian:bullseye-slim commands: - apt -y update - apt -y install build-essential pkg-config autoconf automake libtool - autoconf-archive dejagnu texinfo libreadline-dev + autoconf-archive dejagnu texinfo libreadline-dev librime-dev - autoreconf -i && mkdir build && cd build - - ../configure --with-readline --without-rime --enable-debug + - ../configure --with-readline --with-rime --enable-debug CFLAGS='-O0 -g -std=c99 -Wall -Wextra -Wpedantic -Wshadow' CPPFLAGS='-D_POSIX_C_SOURCE=200112L' - make