mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
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:
@ -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 += " "
|
||||
|
Reference in New Issue
Block a user