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:
33
.github/workflows/test-stable.yml
vendored
33
.github/workflows/test-stable.yml
vendored
@ -784,36 +784,31 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Get source code
|
- name: Checkout irc2
|
||||||
run: curl http://ftp.irc.org/ftp/irc/server/irc2.11.2p3.tgz | tar -zx
|
uses: actions/checkout@v2
|
||||||
- name: Configure
|
with:
|
||||||
run: 'cd $GITHUB_WORKSPACE/irc2.11.2p3
|
path: irc2.11.2p3
|
||||||
|
ref: 59649f24c3a5c27bad5648b48774f27475bccfd3
|
||||||
|
repository: irc-archive/irc2-mirror
|
||||||
|
- name: Build irc2
|
||||||
|
run: |
|
||||||
|
# Configure
|
||||||
|
cd $GITHUB_WORKSPACE/irc2.11.2p3
|
||||||
./configure --prefix=$HOME/.local/
|
./configure --prefix=$HOME/.local/
|
||||||
|
|
||||||
cd x86*
|
cd x86*
|
||||||
|
|
||||||
echo "#define CMDLINE_CONFIG/" >> config.h
|
echo "#define CMDLINE_CONFIG/" >> config.h
|
||||||
|
|
||||||
echo "#define DEFAULT_SPLIT_USERS 0" >> config.h
|
echo "#define DEFAULT_SPLIT_USERS 0" >> config.h
|
||||||
|
|
||||||
echo "#define DEFAULT_SPLIT_SERVERS 0" >> config.h
|
echo "#define DEFAULT_SPLIT_SERVERS 0" >> config.h
|
||||||
|
|
||||||
#echo "#undef LIST_ALIS_NOTE" >> config.h
|
#echo "#undef LIST_ALIS_NOTE" >> config.h
|
||||||
|
|
||||||
# TODO: find a better way to make it not fork...
|
# TODO: find a better way to make it not fork...
|
||||||
|
echo "#define fork() (0)" >> config.h
|
||||||
|
|
||||||
echo "#define fork() (0)" >> config.h'
|
# Compile and install
|
||||||
- name: Compile and install
|
cd $GITHUB_WORKSPACE/irc2.11.2p3/x86*
|
||||||
run: 'cd $GITHUB_WORKSPACE/irc2.11.2p3/x86*
|
|
||||||
|
|
||||||
make -j 4 all
|
make -j 4 all
|
||||||
|
|
||||||
make install
|
make install
|
||||||
|
|
||||||
mkdir -p $HOME/.local/bin
|
mkdir -p $HOME/.local/bin
|
||||||
|
cp $HOME/.local/sbin/ircd $HOME/.local/bin/ircd
|
||||||
cp $HOME/.local/sbin/ircd $HOME/.local/bin/ircd'
|
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: sudo apt-get install atheme-services faketime
|
run: sudo apt-get install atheme-services faketime
|
||||||
- name: Install irctest dependencies
|
- name: Install irctest dependencies
|
||||||
|
@ -159,32 +159,32 @@ software:
|
|||||||
irc2:
|
irc2:
|
||||||
name: irc2
|
name: irc2
|
||||||
separate_build_job: false
|
separate_build_job: false
|
||||||
install_steps:
|
repository : irc-archive/irc2-mirror
|
||||||
stable:
|
path: irc2.11.2p3
|
||||||
- name: Get source code
|
cache: true
|
||||||
run: |-
|
refs:
|
||||||
curl http://ftp.irc.org/ftp/irc/server/irc2.11.2p3.tgz | tar -zx
|
stable: 59649f24c3a5c27bad5648b48774f27475bccfd3 # irc2.11.2p3
|
||||||
- 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
|
|
||||||
release: null
|
release: null
|
||||||
devel: null
|
devel: null
|
||||||
devel_release: 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:
|
ircu2:
|
||||||
name: ircu2
|
name: ircu2
|
||||||
|
Reference in New Issue
Block a user