aboutsummaryrefslogtreecommitdiff
path: root/.woodpecker
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2024-07-22 22:01:47 +0800
committerTest_User <hax@andrewyu.org>2024-07-22 20:38:29 -0400
commite19d7a178716993b04328ba366d88712b660957c (patch)
treecca5beb32f6310e00656441d7f20bc5009257307 /.woodpecker
parent95037d95ec0e894ea705c63f4ce061d26863a155 (diff)
downloadhaxircd-e19d7a178716993b04328ba366d88712b660957c.tar.gz
haxircd-e19d7a178716993b04328ba366d88712b660957c.zip
CI: Use misc.git's configs
Diffstat (limited to '.woodpecker')
-rw-r--r--.woodpecker/.alpine.yaml5
-rw-r--r--.woodpecker/.archlinux.yaml3
-rw-r--r--.woodpecker/.debian.yaml3
-rw-r--r--.woodpecker/.fedora.yaml3
4 files changed, 9 insertions, 5 deletions
diff --git a/.woodpecker/.alpine.yaml b/.woodpecker/.alpine.yaml
index e946684..a8f3745 100644
--- a/.woodpecker/.alpine.yaml
+++ b/.woodpecker/.alpine.yaml
@@ -8,5 +8,6 @@ steps:
image: alpine
commands:
- apk add --no-cache build-base gcc curl openssl-dev gnutls-dev
- - curl -o config.c 'https://paste.sr.ht/blob/09d145e35ce3b058e02f5a0c664046fb66ba67e3'
- - make GNUTLS_SERVER=1 OPENSSL_SERVER=1 INSPIRCD2_PROTOCOL=1
+ - 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 703bf5d..db83da1 100644
--- a/.woodpecker/.archlinux.yaml
+++ b/.woodpecker/.archlinux.yaml
@@ -8,5 +8,6 @@ steps:
image: archlinux
commands:
- pacman --noconfirm -Sy make gcc openssl gnutls curl pkgconf
- - curl -o config.c 'https://paste.sr.ht/blob/09d145e35ce3b058e02f5a0c664046fb66ba67e3'
+ - 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 725c898..687b6b3 100644
--- a/.woodpecker/.debian.yaml
+++ b/.woodpecker/.debian.yaml
@@ -9,5 +9,6 @@ steps:
commands:
- apt update -y
- apt install --no-install-recommends -y binutils make gcc libssl-dev pkg-config curl libgnutls*-dev ca-certificates
- - curl -o config.c 'https://paste.sr.ht/blob/09d145e35ce3b058e02f5a0c664046fb66ba67e3'
+ - 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 6e639e1..8f60ed3 100644
--- a/.woodpecker/.fedora.yaml
+++ b/.woodpecker/.fedora.yaml
@@ -8,5 +8,6 @@ steps:
image: fedora
commands:
- dnf -y install make gcc openssl-devel gnutls-devel pkg-config curl
- - curl -o config.c 'https://paste.sr.ht/blob/09d145e35ce3b058e02f5a0c664046fb66ba67e3'
+ - 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