mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Add workflows triggered by crons to run on the latest development versions (#66)
This commit is contained in:
47
.github/workflows/ergo_devel.yml
vendored
Normal file
47
.github/workflows/ergo_devel.yml
vendored
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# This file was auto-generated by make_workflows.py.
|
||||||
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
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
|
||||||
|
- uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: ~1.16
|
||||||
|
- run: go version
|
||||||
|
- name: Cache dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
key: ${{ runner.os }}-ergo
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/ergo
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |-
|
||||||
|
sudo apt-get install atheme-services
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest -r requirements.txt
|
||||||
|
- name: Checkout Ergo
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: ergo
|
||||||
|
ref: master
|
||||||
|
repository: ergochat/ergo
|
||||||
|
- name: Build Ergo
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/ergo/
|
||||||
|
make build
|
||||||
|
make install
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PATH=~/go/bin:$PATH make ergo
|
||||||
|
name: irctest with Ergo
|
||||||
|
'on':
|
||||||
|
schedule:
|
||||||
|
- cron: 51 8 * * 6
|
||||||
|
- cron: 51 8 * * 0
|
||||||
|
- cron: 51 17 * * *
|
45
.github/workflows/inspircd_devel.yml
vendored
Normal file
45
.github/workflows/inspircd_devel.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# This file was auto-generated by make_workflows.py.
|
||||||
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
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: Cache dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
key: ${{ runner.os }}-inspircd
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/inspircd
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |-
|
||||||
|
sudo apt-get install atheme-services
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest -r requirements.txt
|
||||||
|
- name: Checkout InspIRCd
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: inspircd
|
||||||
|
ref: master
|
||||||
|
repository: inspircd/inspircd
|
||||||
|
- name: Build InspIRCd
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/inspircd/
|
||||||
|
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
||||||
|
./configure --prefix=$HOME/.local/inspircd --development
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PATH=~/.local/inspircd/bin:$PATH make inspircd
|
||||||
|
name: irctest with InspIRCd
|
||||||
|
'on':
|
||||||
|
schedule:
|
||||||
|
- cron: 51 8 * * 6
|
||||||
|
- cron: 51 8 * * 0
|
||||||
|
- cron: 51 17 * * *
|
45
.github/workflows/inspircd_devel_release.yml
vendored
Normal file
45
.github/workflows/inspircd_devel_release.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# This file was auto-generated by make_workflows.py.
|
||||||
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
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: Cache dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
key: ${{ runner.os }}-inspircd
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/inspircd
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |-
|
||||||
|
sudo apt-get install atheme-services
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest -r requirements.txt
|
||||||
|
- name: Checkout InspIRCd
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: inspircd
|
||||||
|
ref: insp3
|
||||||
|
repository: inspircd/inspircd
|
||||||
|
- name: Build InspIRCd
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/inspircd/
|
||||||
|
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
||||||
|
./configure --prefix=$HOME/.local/inspircd --development
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PATH=~/.local/inspircd/bin:$PATH make inspircd
|
||||||
|
name: irctest with InspIRCd
|
||||||
|
'on':
|
||||||
|
schedule:
|
||||||
|
- cron: 51 8 * * 6
|
||||||
|
- cron: 51 8 * * 0
|
||||||
|
- cron: 51 17 * * *
|
34
.github/workflows/limnoria_devel.yml
vendored
Normal file
34
.github/workflows/limnoria_devel.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# This file was auto-generated by make_workflows.py.
|
||||||
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
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: Cache dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
key: ${{ runner.os }}-limnoria
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/placeholder
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |-
|
||||||
|
sudo apt-get install atheme-services
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest -r requirements.txt
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install git+https://github.com/ProgVal/Limnoria.git@testing cryptography
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PATH=~/.local/bin:$PATH make limnoria
|
||||||
|
name: irctest with Limnoria
|
||||||
|
'on':
|
||||||
|
schedule:
|
||||||
|
- cron: 51 8 * * 6
|
||||||
|
- cron: 51 8 * * 0
|
||||||
|
- cron: 51 17 * * *
|
45
.github/workflows/solanum_devel.yml
vendored
Normal file
45
.github/workflows/solanum_devel.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# This file was auto-generated by make_workflows.py.
|
||||||
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
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: Cache dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
key: ${{ runner.os }}-solanum
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/solanum
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |-
|
||||||
|
sudo apt-get install atheme-services
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest -r requirements.txt
|
||||||
|
- name: Checkout Solanum
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: solanum
|
||||||
|
ref: main
|
||||||
|
repository: solanum-ircd/solanum
|
||||||
|
- name: Build Solanum
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/solanum/
|
||||||
|
./autogen.sh
|
||||||
|
./configure --prefix=$HOME/.local/
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PATH=~/.local/bin:$PATH make solanum
|
||||||
|
name: irctest with Solanum
|
||||||
|
'on':
|
||||||
|
schedule:
|
||||||
|
- cron: 51 8 * * 6
|
||||||
|
- cron: 51 8 * * 0
|
||||||
|
- cron: 51 17 * * *
|
34
.github/workflows/sopel_devel.yml
vendored
Normal file
34
.github/workflows/sopel_devel.yml
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# This file was auto-generated by make_workflows.py.
|
||||||
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
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: Cache dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
key: ${{ runner.os }}-sopel
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/placeholder
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |-
|
||||||
|
sudo apt-get install atheme-services
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest -r requirements.txt
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install git+https://github.com/sopel-irc/sopel.git
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PATH=~/.local/bin:$PATH make sopel
|
||||||
|
name: irctest with Sopel
|
||||||
|
'on':
|
||||||
|
schedule:
|
||||||
|
- cron: 51 8 * * 6
|
||||||
|
- cron: 51 8 * * 0
|
||||||
|
- cron: 51 17 * * *
|
2
.github/workflows/unrealircd.yml
vendored
2
.github/workflows/unrealircd.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
path: unrealircd
|
path: unrealircd
|
||||||
ref: unreal52
|
ref: 94993a03ca8d3c193c0295c33af39270c3f9d27d
|
||||||
repository: unrealircd/unrealircd
|
repository: unrealircd/unrealircd
|
||||||
- name: Build UnrealIRCd
|
- name: Build UnrealIRCd
|
||||||
run: |
|
run: |
|
||||||
|
45
.github/workflows/unrealircd_devel.yml
vendored
Normal file
45
.github/workflows/unrealircd_devel.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
# This file was auto-generated by make_workflows.py.
|
||||||
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
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: Cache dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
key: ${{ runner.os }}-unrealircd
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/unrealircd
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |-
|
||||||
|
sudo apt-get install atheme-services
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pytest -r requirements.txt
|
||||||
|
- name: Checkout UnrealIRCd
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: unrealircd
|
||||||
|
ref: unreal52
|
||||||
|
repository: unrealircd/unrealircd
|
||||||
|
- name: Build UnrealIRCd
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/unrealircd/
|
||||||
|
cp $GITHUB_WORKSPACE/unreal/* .
|
||||||
|
CFLAGS=-O0 ./Config -quick
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PATH=~/.local/unrealircd/bin:$PATH make unrealircd
|
||||||
|
name: irctest with UnrealIRCd
|
||||||
|
'on':
|
||||||
|
schedule:
|
||||||
|
- cron: 51 8 * * 6
|
||||||
|
- cron: 51 8 * * 0
|
||||||
|
- cron: 51 17 * * *
|
@ -8,6 +8,7 @@ The point is that we had/have a lot of duplications between files in
|
|||||||
and keep them in sync.
|
and keep them in sync.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import enum
|
||||||
import pathlib
|
import pathlib
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
@ -33,15 +34,36 @@ class Dumper(yaml.Dumper):
|
|||||||
Dumper.add_representer(script, script_representer)
|
Dumper.add_representer(script, script_representer)
|
||||||
|
|
||||||
|
|
||||||
def generate_workflow(config, software_id):
|
class VersionFlavor(enum.Enum):
|
||||||
|
STABLE = "stable"
|
||||||
|
"""A statically defined version, that we already tested irctest on.
|
||||||
|
This is ran on PRs and master, because failure guarantees it's a bug in
|
||||||
|
the new irctest commit/PR."""
|
||||||
|
RELEASE = "release"
|
||||||
|
"""The last release of the project. This should usually pass.
|
||||||
|
We don't currently use this."""
|
||||||
|
DEVEL = "devel"
|
||||||
|
"""The last commit of the project. This allows us to catch bugs in other
|
||||||
|
software early in their development process."""
|
||||||
|
DEVEL_RELEASE = "devel_release"
|
||||||
|
"""Ditto, but if the project uses a specific branch for their current
|
||||||
|
release series, it uses that branch instead"""
|
||||||
|
|
||||||
|
|
||||||
|
def generate_workflow(config: dict, software_id: str, version_flavor: VersionFlavor):
|
||||||
software_config = config["software"][software_id]
|
software_config = config["software"][software_id]
|
||||||
name = software_config["name"]
|
name = software_config["name"]
|
||||||
prefix = software_config.get("prefix", "~/.local")
|
prefix = software_config.get("prefix", "~/.local")
|
||||||
|
|
||||||
if "install_steps" in software_config:
|
if "install_steps" in software_config:
|
||||||
path = "placeholder" # TODO: remove this
|
path = "placeholder" # TODO: remove this
|
||||||
install_steps = software_config["install_steps"]
|
install_steps = software_config["install_steps"][version_flavor.value]
|
||||||
|
if install_steps is None:
|
||||||
|
return
|
||||||
else:
|
else:
|
||||||
|
ref = software_config["refs"][version_flavor.value]
|
||||||
|
if ref is None:
|
||||||
|
return
|
||||||
path = software_config["path"]
|
path = software_config["path"]
|
||||||
install_steps = [
|
install_steps = [
|
||||||
{
|
{
|
||||||
@ -49,7 +71,7 @@ def generate_workflow(config, software_id):
|
|||||||
"uses": "actions/checkout@v2",
|
"uses": "actions/checkout@v2",
|
||||||
"with": {
|
"with": {
|
||||||
"repository": software_config["repository"],
|
"repository": software_config["repository"],
|
||||||
"ref": software_config["ref"],
|
"ref": ref,
|
||||||
"path": path,
|
"path": path,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -59,9 +81,24 @@ def generate_workflow(config, software_id):
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
on: dict
|
||||||
|
if version_flavor == VersionFlavor.STABLE:
|
||||||
|
on = {"push": None, "pull_request": None}
|
||||||
|
else:
|
||||||
|
# Run every saturday and sunday 8:51 UTC, and every day at 17:51
|
||||||
|
# (minute choosen at random, hours and days is so that I'm available
|
||||||
|
# to fix bugs it detects)
|
||||||
|
on = {
|
||||||
|
"schedule": [
|
||||||
|
{"cron": "51 8 * * 6"},
|
||||||
|
{"cron": "51 8 * * 0"},
|
||||||
|
{"cron": "51 17 * * *"},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
workflow = {
|
workflow = {
|
||||||
"name": f"irctest with {name}",
|
"name": f"irctest with {name}",
|
||||||
"on": {"push": None, "pull_request": None},
|
"on": on,
|
||||||
"jobs": {
|
"jobs": {
|
||||||
"build": {
|
"build": {
|
||||||
"runs-on": "ubuntu-latest",
|
"runs-on": "ubuntu-latest",
|
||||||
@ -104,7 +141,14 @@ def generate_workflow(config, software_id):
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
with open(GH_WORKFLOW_DIR / f"{software_id}.yml", "wt") as fd:
|
if version_flavor == VersionFlavor.STABLE:
|
||||||
|
workflow_filename = GH_WORKFLOW_DIR / f"{software_id}.yml"
|
||||||
|
else:
|
||||||
|
workflow_filename = (
|
||||||
|
GH_WORKFLOW_DIR / f"{software_id}_{version_flavor.value}.yml"
|
||||||
|
)
|
||||||
|
|
||||||
|
with open(workflow_filename, "wt") as fd:
|
||||||
fd.write("# This file was auto-generated by make_workflows.py.\n")
|
fd.write("# This file was auto-generated by make_workflows.py.\n")
|
||||||
fd.write("# Do not edit it manually, modifications will be lost.\n\n")
|
fd.write("# Do not edit it manually, modifications will be lost.\n\n")
|
||||||
fd.write(yaml.dump(workflow, Dumper=Dumper))
|
fd.write(yaml.dump(workflow, Dumper=Dumper))
|
||||||
@ -115,7 +159,11 @@ def main():
|
|||||||
config = yaml.load(fd, Loader=yaml.Loader)
|
config = yaml.load(fd, Loader=yaml.Loader)
|
||||||
|
|
||||||
for software_id in config["software"]:
|
for software_id in config["software"]:
|
||||||
generate_workflow(config, software_id)
|
generate_workflow(config, software_id, version_flavor=VersionFlavor.STABLE)
|
||||||
|
generate_workflow(config, software_id, version_flavor=VersionFlavor.DEVEL)
|
||||||
|
generate_workflow(
|
||||||
|
config, software_id, version_flavor=VersionFlavor.DEVEL_RELEASE
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
@ -1,12 +1,19 @@
|
|||||||
# Input used by make_workflows.py to generate .github/workflows/
|
# Input used by make_workflows.py to generate .github/workflows/
|
||||||
|
|
||||||
|
# See VersionFlavor in the script to see how stabl/release/devel/devel_release
|
||||||
|
# are defined.
|
||||||
|
|
||||||
software:
|
software:
|
||||||
#############################
|
#############################
|
||||||
# Charybdis family:
|
# Charybdis family:
|
||||||
charybdis:
|
charybdis:
|
||||||
name: Charybdis
|
name: Charybdis
|
||||||
repository: charybdis-ircd/charybdis
|
repository: charybdis-ircd/charybdis
|
||||||
ref: charybdis-4.1.2
|
refs:
|
||||||
|
stable: charybdis-4.1.2
|
||||||
|
release: null
|
||||||
|
devel: null
|
||||||
|
devel_release: null
|
||||||
path: charybdis
|
path: charybdis
|
||||||
build_script: |
|
build_script: |
|
||||||
cd $GITHUB_WORKSPACE/charybdis/
|
cd $GITHUB_WORKSPACE/charybdis/
|
||||||
@ -18,7 +25,13 @@ software:
|
|||||||
solanum:
|
solanum:
|
||||||
name: Solanum
|
name: Solanum
|
||||||
repository: solanum-ircd/solanum
|
repository: solanum-ircd/solanum
|
||||||
ref: e370888264da666a1bd9faac86cd5f2aa06084f4
|
refs:
|
||||||
|
# Actually Solanum doesn't have releases; so we just bump this
|
||||||
|
# commit hash from time to time
|
||||||
|
stable: e370888264da666a1bd9faac86cd5f2aa06084f4
|
||||||
|
release: null
|
||||||
|
devel: main
|
||||||
|
devel_release: null
|
||||||
path: solanum
|
path: solanum
|
||||||
build_script: |
|
build_script: |
|
||||||
cd $GITHUB_WORKSPACE/solanum/
|
cd $GITHUB_WORKSPACE/solanum/
|
||||||
@ -32,7 +45,11 @@ software:
|
|||||||
ergo:
|
ergo:
|
||||||
name: Ergo
|
name: Ergo
|
||||||
repository: ergochat/ergo
|
repository: ergochat/ergo
|
||||||
ref: irctest_stable
|
refs:
|
||||||
|
stable: irctest_stable
|
||||||
|
release: stable
|
||||||
|
devel: master
|
||||||
|
devel_release: null
|
||||||
path: ergo
|
path: ergo
|
||||||
prefix: ~/go
|
prefix: ~/go
|
||||||
pre_deps:
|
pre_deps:
|
||||||
@ -48,7 +65,11 @@ software:
|
|||||||
inspircd:
|
inspircd:
|
||||||
name: InspIRCd
|
name: InspIRCd
|
||||||
repository: inspircd/inspircd
|
repository: inspircd/inspircd
|
||||||
ref: v3.8.1
|
refs:
|
||||||
|
stable: v3.8.1
|
||||||
|
release: null
|
||||||
|
devel: master
|
||||||
|
devel_release: insp3
|
||||||
path: inspircd
|
path: inspircd
|
||||||
prefix: ~/.local/inspircd
|
prefix: ~/.local/inspircd
|
||||||
build_script: |
|
build_script: |
|
||||||
@ -61,7 +82,11 @@ software:
|
|||||||
unrealircd:
|
unrealircd:
|
||||||
name: UnrealIRCd
|
name: UnrealIRCd
|
||||||
repository: unrealircd/unrealircd
|
repository: unrealircd/unrealircd
|
||||||
ref: unreal52
|
refs:
|
||||||
|
stable: 94993a03ca8d3c193c0295c33af39270c3f9d27d # 5.2.1-rc1
|
||||||
|
release: null
|
||||||
|
devel: unreal52
|
||||||
|
devel_release: null
|
||||||
path: unrealircd
|
path: unrealircd
|
||||||
prefix: ~/.local/unrealircd
|
prefix: ~/.local/unrealircd
|
||||||
build_script: |
|
build_script: |
|
||||||
@ -77,11 +102,27 @@ software:
|
|||||||
limnoria:
|
limnoria:
|
||||||
name: Limnoria
|
name: Limnoria
|
||||||
install_steps:
|
install_steps:
|
||||||
- name: Install dependencies
|
stable:
|
||||||
run: pip install limnoria==2021.01.15 cryptography
|
- name: Install dependencies
|
||||||
|
run: pip install limnoria==2021.01.15 cryptography
|
||||||
|
release:
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install limnoria cryptography
|
||||||
|
devel:
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install git+https://github.com/ProgVal/Limnoria.git@testing cryptography
|
||||||
|
devel_release: null
|
||||||
|
|
||||||
sopel:
|
sopel:
|
||||||
name: Sopel
|
name: Sopel
|
||||||
install_steps:
|
install_steps:
|
||||||
- name: Install dependencies
|
stable:
|
||||||
run: pip install sopel==7.0.7
|
- name: Install dependencies
|
||||||
|
run: pip install sopel==7.0.7
|
||||||
|
release:
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install sopel
|
||||||
|
devel:
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install git+https://github.com/sopel-irc/sopel.git
|
||||||
|
devel_release: null
|
||||||
|
Reference in New Issue
Block a user