aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2024-07-22 22:06:42 +0800
committerTest_User <hax@andrewyu.org>2024-07-22 20:39:54 -0400
commit9ccf3ab2ced07c537e91f2c19c5d967b39b0a1e2 (patch)
treea031e053e26893f430fd480b0e029e457386b299
parente19d7a178716993b04328ba366d88712b660957c (diff)
downloadhaxircd-9ccf3ab2ced07c537e91f2c19c5d967b39b0a1e2.tar.gz
haxircd-9ccf3ab2ced07c537e91f2c19c5d967b39b0a1e2.zip
CI: Install missing packages
-rw-r--r--.woodpecker/.alpine.yaml2
-rw-r--r--.woodpecker/.archlinux.yaml2
-rw-r--r--.woodpecker/.debian.yaml2
-rw-r--r--.woodpecker/.fedora.yaml2
4 files changed, 4 insertions, 4 deletions
diff --git a/.woodpecker/.alpine.yaml b/.woodpecker/.alpine.yaml
index a8f3745..13404ce 100644
--- a/.woodpecker/.alpine.yaml
+++ b/.woodpecker/.alpine.yaml
@@ -7,7 +7,7 @@ steps:
event: [manual]
image: alpine
commands:
- - apk add --no-cache build-base gcc curl openssl-dev gnutls-dev
+ - apk add --no-cache build-base gcc curl openssl-dev gnutls-dev lmdb-dev linux-headers
- curl -o config.c 'https://git.runxiyu.org/runxiyu/misc.git/plain/haxircd-config-example/config.c'
- curl -o .makeopts 'https://git.runxiyu.org/runxiyu/misc.git/plain/haxircd-config-example/.makeopts'
- make
diff --git a/.woodpecker/.archlinux.yaml b/.woodpecker/.archlinux.yaml
index db83da1..0e7d462 100644
--- a/.woodpecker/.archlinux.yaml
+++ b/.woodpecker/.archlinux.yaml
@@ -7,7 +7,7 @@ steps:
event: [manual]
image: archlinux
commands:
- - pacman --noconfirm -Sy make gcc openssl gnutls curl pkgconf
+ - pacman --noconfirm -Sy make gcc openssl gnutls curl pkgconf lmdb
- curl -o config.c 'https://git.runxiyu.org/runxiyu/misc.git/plain/haxircd-config-example/config.c'
- curl -o .makeopts 'https://git.runxiyu.org/runxiyu/misc.git/plain/haxircd-config-example/.makeopts'
- make GNUTLS_SERVER=1 OPENSSL_SERVER=1 INSPIRCD2_PROTOCOL=1
diff --git a/.woodpecker/.debian.yaml b/.woodpecker/.debian.yaml
index 687b6b3..4883f57 100644
--- a/.woodpecker/.debian.yaml
+++ b/.woodpecker/.debian.yaml
@@ -8,7 +8,7 @@ steps:
image: debian:sid
commands:
- apt update -y
- - apt install --no-install-recommends -y binutils make gcc libssl-dev pkg-config curl libgnutls*-dev ca-certificates
+ - apt install --no-install-recommends -y binutils make gcc libssl-dev pkg-config curl libgnutls*-dev ca-certificates liblmdb-dev
- curl -o config.c 'https://git.runxiyu.org/runxiyu/misc.git/plain/haxircd-config-example/config.c'
- curl -o .makeopts 'https://git.runxiyu.org/runxiyu/misc.git/plain/haxircd-config-example/.makeopts'
- make GNUTLS_SERVER=1 OPENSSL_SERVER=1 INSPIRCD2_PROTOCOL=1
diff --git a/.woodpecker/.fedora.yaml b/.woodpecker/.fedora.yaml
index 8f60ed3..5508e0f 100644
--- a/.woodpecker/.fedora.yaml
+++ b/.woodpecker/.fedora.yaml
@@ -7,7 +7,7 @@ steps:
event: [manual]
image: fedora
commands:
- - dnf -y install make gcc openssl-devel gnutls-devel pkg-config curl
+ - dnf -y install make gcc openssl-devel gnutls-devel pkg-config curl lmdb-devel
- curl -o config.c 'https://git.runxiyu.org/runxiyu/misc.git/plain/haxircd-config-example/config.c'
- curl -o .makeopts 'https://git.runxiyu.org/runxiyu/misc.git/plain/haxircd-config-example/.makeopts'
- make GNUTLS_SERVER=1 OPENSSL_SERVER=1 INSPIRCD2_PROTOCOL=1