mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 22:39:50 +00:00
Bump versions used on the CI. (#140)
This commit is contained in:
22
.github/workflows/test-stable.yml
vendored
22
.github/workflows/test-stable.yml
vendored
@ -61,7 +61,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: Bahamut
|
||||
ref: v2.2.0
|
||||
ref: v2.2.1
|
||||
repository: DALnet/Bahamut
|
||||
- name: Build Bahamut
|
||||
run: |
|
||||
@ -149,7 +149,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: ircd-hybrid
|
||||
ref: 8.2.38
|
||||
ref: 8.2.39
|
||||
repository: ircd-hybrid/ircd-hybrid
|
||||
- name: Build Hybrid
|
||||
run: |
|
||||
@ -179,7 +179,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: inspircd
|
||||
ref: v3.10.0
|
||||
ref: v3.12.0
|
||||
repository: inspircd/inspircd
|
||||
- name: Build InspIRCd
|
||||
run: |
|
||||
@ -257,10 +257,10 @@ jobs:
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: clone
|
||||
run: 'curl https://gitlab.com/rizon/plexus4/-/archive/403a967e3677a2a8420b504f451e7557259e0790/plexus4-403a967e3677a2a8420b504f451e7557259e0790.tar.gz
|
||||
| tar -zx
|
||||
run: 'curl https://gitlab.com/rizon/plexus4/-/archive/20211115_0-611/plexus4-20211115_0-611.tar
|
||||
| tar -x
|
||||
|
||||
mv plexus4* plexus4'
|
||||
mv plexus* plexus4'
|
||||
- name: build
|
||||
run: 'cd $GITHUB_WORKSPACE/plexus4
|
||||
|
||||
@ -302,7 +302,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: solanum
|
||||
ref: e370888264da666a1bd9faac86cd5f2aa06084f4
|
||||
ref: 492d560ee13e71dc35403fd676e58c2d5bdcf2a9
|
||||
repository: solanum-ircd/solanum
|
||||
- name: Build Solanum
|
||||
run: |
|
||||
@ -342,7 +342,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: unrealircd
|
||||
ref: d77f42e4bef388ae344256eeef9a8000345ae381
|
||||
ref: daa0c11f285c7123ba9fa2966dee2d1a17729f1e
|
||||
repository: unrealircd/unrealircd
|
||||
- name: Build UnrealIRCd 6
|
||||
run: |
|
||||
@ -386,7 +386,7 @@ jobs:
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: unrealircd
|
||||
ref: 94993a03ca8d3c193c0295c33af39270c3f9d27d
|
||||
ref: 6604856973f713a494f83d38992d7d61ce6b9db4
|
||||
repository: unrealircd/unrealircd
|
||||
- name: Build UnrealIRCd 5
|
||||
run: |
|
||||
@ -876,7 +876,7 @@ jobs:
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: Install dependencies
|
||||
run: pip install limnoria==2021.10.09 cryptography pyxmpp2-scram
|
||||
run: pip install limnoria==2022.03.17 cryptography pyxmpp2-scram
|
||||
- name: Install Atheme
|
||||
run: sudo apt-get install atheme-services
|
||||
- name: Install irctest dependencies
|
||||
@ -1074,7 +1074,7 @@ jobs:
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: Install dependencies
|
||||
run: pip install sopel==7.1.1
|
||||
run: pip install sopel==7.1.8
|
||||
- name: Install Atheme
|
||||
run: sudo apt-get install atheme-services
|
||||
- name: Install irctest dependencies
|
||||
|
3
Makefile
3
Makefile
@ -52,9 +52,7 @@ HYBRID_SELECTORS := \
|
||||
and not deprecated \
|
||||
$(EXTRA_SELECTORS)
|
||||
|
||||
# testNoticeNonexistentChannel fails because of https://github.com/inspircd/inspircd/issues/1849
|
||||
# testBotPrivateMessage and testBotChannelMessage fail because https://github.com/inspircd/inspircd/pull/1910 is not released yet
|
||||
# testNamesInvalidChannel and testNamesNonexistingChannel fail because https://github.com/inspircd/inspircd/pull/1922 is not released yet.
|
||||
# WHOWAS tests fail because https://github.com/inspircd/inspircd/pull/1967 and https://github.com/inspircd/inspircd/pull/1968 are not released yet
|
||||
INSPIRCD_SELECTORS := \
|
||||
not Ergo \
|
||||
@ -62,7 +60,6 @@ INSPIRCD_SELECTORS := \
|
||||
and not strict \
|
||||
and not testNoticeNonexistentChannel \
|
||||
and not testBotPrivateMessage and not testBotChannelMessage \
|
||||
and not testNamesInvalidChannel and not testNamesNonexistingChannel \
|
||||
and not whowas \
|
||||
$(EXTRA_SELECTORS)
|
||||
|
||||
|
@ -27,7 +27,7 @@ software:
|
||||
name: Hybrid
|
||||
repository: ircd-hybrid/ircd-hybrid
|
||||
refs:
|
||||
stable: "8.2.38"
|
||||
stable: "8.2.39"
|
||||
release: null
|
||||
devel: "8.2.x"
|
||||
devel_release: null
|
||||
@ -47,8 +47,8 @@ software:
|
||||
stable:
|
||||
- name: clone
|
||||
run: |-
|
||||
curl https://gitlab.com/rizon/plexus4/-/archive/403a967e3677a2a8420b504f451e7557259e0790/plexus4-403a967e3677a2a8420b504f451e7557259e0790.tar.gz | tar -zx
|
||||
mv plexus4* plexus4
|
||||
curl https://gitlab.com/rizon/plexus4/-/archive/20211115_0-611/plexus4-20211115_0-611.tar | tar -x
|
||||
mv plexus* plexus4
|
||||
- name: build
|
||||
run: |-
|
||||
cd $GITHUB_WORKSPACE/plexus4
|
||||
@ -77,7 +77,7 @@ software:
|
||||
refs:
|
||||
# Actually Solanum doesn't have releases; so we just bump this
|
||||
# commit hash from time to time
|
||||
stable: e370888264da666a1bd9faac86cd5f2aa06084f4
|
||||
stable: 492d560ee13e71dc35403fd676e58c2d5bdcf2a9
|
||||
release: null
|
||||
devel: main
|
||||
devel_release: null
|
||||
@ -96,7 +96,7 @@ software:
|
||||
name: Bahamut
|
||||
repository: DALnet/Bahamut
|
||||
refs:
|
||||
stable: "v2.2.0"
|
||||
stable: "v2.2.1"
|
||||
release: null
|
||||
devel: "master"
|
||||
devel_release: null
|
||||
@ -142,7 +142,7 @@ software:
|
||||
name: InspIRCd
|
||||
repository: inspircd/inspircd
|
||||
refs: &inspircd_refs
|
||||
stable: v3.10.0
|
||||
stable: v3.12.0
|
||||
release: null
|
||||
devel: master
|
||||
devel_release: insp3
|
||||
@ -250,8 +250,8 @@ software:
|
||||
name: UnrealIRCd 6
|
||||
repository: unrealircd/unrealircd
|
||||
refs:
|
||||
stable: d77f42e4bef388ae344256eeef9a8000345ae381 # 6.0.0 + 2 commits
|
||||
release: 893bf864f6c616e891d84916d27e342c252f31aaa # 6.0.0
|
||||
stable: daa0c11f285c7123ba9fa2966dee2d1a17729f1e # 6.0.2 + a few commits
|
||||
release: 29fd2e772a6b4b9107daa4e3c237df454b055810 # 6.0.2
|
||||
devel: unreal60_dev
|
||||
devel_release: null
|
||||
path: unrealircd
|
||||
@ -272,7 +272,7 @@ software:
|
||||
name: UnrealIRCd 5
|
||||
repository: unrealircd/unrealircd
|
||||
refs:
|
||||
stable: 94993a03ca8d3c193c0295c33af39270c3f9d27d # 5.2.1-rc1
|
||||
stable: 6604856973f713a494f83d38992d7d61ce6b9db4 # 5.2.4
|
||||
release: null
|
||||
devel: unreal52
|
||||
devel_release:
|
||||
@ -290,7 +290,7 @@ software:
|
||||
install_steps:
|
||||
stable:
|
||||
- name: Install dependencies
|
||||
run: pip install limnoria==2021.10.09 cryptography pyxmpp2-scram
|
||||
run: pip install limnoria==2022.03.17 cryptography pyxmpp2-scram
|
||||
release:
|
||||
- name: Install dependencies
|
||||
run: pip install limnoria cryptography pyxmpp2-scram
|
||||
@ -305,7 +305,7 @@ software:
|
||||
install_steps:
|
||||
stable:
|
||||
- name: Install dependencies
|
||||
run: pip install sopel==7.1.1
|
||||
run: pip install sopel==7.1.8
|
||||
release:
|
||||
- name: Install dependencies
|
||||
run: pip install sopel
|
||||
|
Reference in New Issue
Block a user