Add missing ircu2 to the CI

This commit is contained in:
2021-08-10 18:47:54 +02:00
parent 56906302b7
commit 370d6a3854
3 changed files with 81 additions and 0 deletions

View File

@ -292,6 +292,7 @@ jobs:
- test-hybrid - test-hybrid
- test-inspircd - test-inspircd
- test-inspircd-anope - test-inspircd-anope
- test-ircu2
- test-limnoria - test-limnoria
- test-plexus4 - test-plexus4
- test-solanum - test-solanum
@ -552,6 +553,44 @@ jobs:
with: with:
name: pytest results inspircd-anope (devel) name: pytest results inspircd-anope (devel)
path: pytest.xml path: pytest.xml
test-ircu2:
needs: []
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Checkout ircu2
uses: actions/checkout@v2
with:
path: ircu2
ref: u2_10_12_branch
repository: undernetirc/ircu2
- name: Build ircu2
run: |
cd $GITHUB_WORKSPACE/ircu2
# We need --with-maxcon, to set MAXCONNECTIONS so that it's much lower than
# NN_MAX_CLIENT, or ircu2 crashes with a somewhat cryptic error on startup.
./configure --prefix=$HOME/.local/ --with-maxcon=1024 --enable-debug
make -j 4
make install
- name: Install Atheme
run: sudo apt-get install atheme-services
- name: Install irctest dependencies
run: |-
python -m pip install --upgrade pip
pip install pytest pytest-xdist -r requirements.txt
- name: Test with pytest
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
ircu2
- if: always()
name: Publish results
uses: actions/upload-artifact@v2
with:
name: pytest results ircu2 (devel)
path: pytest.xml
test-limnoria: test-limnoria:
needs: [] needs: []
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -335,6 +335,7 @@ jobs:
- test-inspircd-anope - test-inspircd-anope
- test-inspircd-atheme - test-inspircd-atheme
- test-irc2 - test-irc2
- test-ircu2
- test-limnoria - test-limnoria
- test-plexus4 - test-plexus4
- test-solanum - test-solanum
@ -713,6 +714,44 @@ jobs:
with: with:
name: pytest results irc2 (stable) name: pytest results irc2 (stable)
path: pytest.xml path: pytest.xml
test-ircu2:
needs: []
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Checkout ircu2
uses: actions/checkout@v2
with:
path: ircu2
ref: u2.10.12.19
repository: undernetirc/ircu2
- name: Build ircu2
run: |
cd $GITHUB_WORKSPACE/ircu2
# We need --with-maxcon, to set MAXCONNECTIONS so that it's much lower than
# NN_MAX_CLIENT, or ircu2 crashes with a somewhat cryptic error on startup.
./configure --prefix=$HOME/.local/ --with-maxcon=1024 --enable-debug
make -j 4
make install
- name: Install Atheme
run: sudo apt-get install atheme-services
- name: Install irctest dependencies
run: |-
python -m pip install --upgrade pip
pip install pytest pytest-xdist -r requirements.txt
- name: Test with pytest
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
ircu2
- if: always()
name: Publish results
uses: actions/upload-artifact@v2
with:
name: pytest results ircu2 (stable)
path: pytest.xml
test-limnoria: test-limnoria:
needs: [] needs: []
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -323,6 +323,9 @@ tests:
irc2: irc2:
software: [irc2] software: [irc2]
ircu2:
software: [ircu2]
unrealircd: unrealircd:
software: [unrealircd] software: [unrealircd]