Add Anope controller, and use it with inspircd and unreal (#75)

* Add Anope controller, and use it with inspircd and unreal

* Build Anope before running it, duh

* Fix Anope build script

* Consistently use ascii casemapping instead of rfc1459

* Skip failing test with Anope
This commit is contained in:
2021-07-07 15:06:00 +02:00
committed by GitHub
parent 7e024b9ead
commit a637ae3927
14 changed files with 457 additions and 7 deletions

View File

@ -80,6 +80,31 @@ def get_build_job(*, software_config, software_id, version_flavor):
},
]
if software_config.get("build_anope", False):
install_steps.append(
{
"name": "Checkout Anope",
"uses": "actions/checkout@v2",
"with": {
"repository": "anope/anope",
"ref": "2.0.9",
"path": "anope",
},
}
)
install_steps.append(
{
"name": "Build Anope",
"run": script(
"cd $GITHUB_WORKSPACE/anope/",
"cp $GITHUB_WORKSPACE/data/anope/* .",
"CFLAGS=-O0 ./Config -quick",
"make -C build -j 4",
"make -C build install",
),
}
)
env = software_config.get("env", {}).get(version_flavor.value, "")
if env:
env += " "