mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
Replace remote download of irc2 with a git clone
To avoid flakiness and hitting the irc.org servers too hard
This commit is contained in:
@ -159,32 +159,32 @@ software:
|
||||
irc2:
|
||||
name: irc2
|
||||
separate_build_job: false
|
||||
install_steps:
|
||||
stable:
|
||||
- name: Get source code
|
||||
run: |-
|
||||
curl http://ftp.irc.org/ftp/irc/server/irc2.11.2p3.tgz | tar -zx
|
||||
- name: Configure
|
||||
run: |-
|
||||
cd $GITHUB_WORKSPACE/irc2.11.2p3
|
||||
./configure --prefix=$HOME/.local/
|
||||
cd x86*
|
||||
echo "#define CMDLINE_CONFIG/" >> config.h
|
||||
echo "#define DEFAULT_SPLIT_USERS 0" >> config.h
|
||||
echo "#define DEFAULT_SPLIT_SERVERS 0" >> config.h
|
||||
#echo "#undef LIST_ALIS_NOTE" >> config.h
|
||||
# TODO: find a better way to make it not fork...
|
||||
echo "#define fork() (0)" >> config.h
|
||||
- name: Compile and install
|
||||
run: |-
|
||||
cd $GITHUB_WORKSPACE/irc2.11.2p3/x86*
|
||||
make -j 4 all
|
||||
make install
|
||||
mkdir -p $HOME/.local/bin
|
||||
cp $HOME/.local/sbin/ircd $HOME/.local/bin/ircd
|
||||
repository : irc-archive/irc2-mirror
|
||||
path: irc2.11.2p3
|
||||
cache: true
|
||||
refs:
|
||||
stable: 59649f24c3a5c27bad5648b48774f27475bccfd3 # irc2.11.2p3
|
||||
release: null
|
||||
devel: null
|
||||
devel_release: null
|
||||
build_script: |
|
||||
# Configure
|
||||
cd $GITHUB_WORKSPACE/irc2.11.2p3
|
||||
./configure --prefix=$HOME/.local/
|
||||
cd x86*
|
||||
echo "#define CMDLINE_CONFIG/" >> config.h
|
||||
echo "#define DEFAULT_SPLIT_USERS 0" >> config.h
|
||||
echo "#define DEFAULT_SPLIT_SERVERS 0" >> config.h
|
||||
#echo "#undef LIST_ALIS_NOTE" >> config.h
|
||||
# TODO: find a better way to make it not fork...
|
||||
echo "#define fork() (0)" >> config.h
|
||||
|
||||
# Compile and install
|
||||
cd $GITHUB_WORKSPACE/irc2.11.2p3/x86*
|
||||
make -j 4 all
|
||||
make install
|
||||
mkdir -p $HOME/.local/bin
|
||||
cp $HOME/.local/sbin/ircd $HOME/.local/bin/ircd
|
||||
|
||||
ircu2:
|
||||
name: ircu2
|
||||
|
Reference in New Issue
Block a user