workflows: Remove special-casing of Anope

This commit is contained in:
2022-09-10 14:53:20 +02:00
committed by Val Lorentz
parent c1442c4301
commit cae3aec338
5 changed files with 50 additions and 62 deletions

View File

@ -5,18 +5,22 @@ jobs:
build-anope: build-anope:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2
- name: Create directories - name: Create directories
run: cd ~/; mkdir -p .local/ go/ run: cd ~/; mkdir -p .local/ go/
- name: Cache Anope - name: Cache dependencies
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
key: 3-${{ runner.os }}-anope-2.0.9 key: 3-${{ runner.os }}-anope-devel
path: '~/.cache path: '~/.cache
${{ github.workspace }}/anope ${ github.workspace }/anope
' '
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Checkout Anope - name: Checkout Anope
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
@ -24,7 +28,7 @@ jobs:
ref: 2.0.9 ref: 2.0.9
repository: anope/anope repository: anope/anope
- name: Build Anope - name: Build Anope
run: |- run: |
cd $GITHUB_WORKSPACE/anope/ cd $GITHUB_WORKSPACE/anope/
cp $GITHUB_WORKSPACE/data/anope/* . cp $GITHUB_WORKSPACE/data/anope/* .
CFLAGS=-O0 ./Config -quick CFLAGS=-O0 ./Config -quick

View File

@ -5,18 +5,22 @@ jobs:
build-anope: build-anope:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2
- name: Create directories - name: Create directories
run: cd ~/; mkdir -p .local/ go/ run: cd ~/; mkdir -p .local/ go/
- name: Cache Anope - name: Cache dependencies
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
key: 3-${{ runner.os }}-anope-2.0.9 key: 3-${{ runner.os }}-anope-devel_release
path: '~/.cache path: '~/.cache
${{ github.workspace }}/anope ${ github.workspace }/anope
' '
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Checkout Anope - name: Checkout Anope
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
@ -24,7 +28,7 @@ jobs:
ref: 2.0.9 ref: 2.0.9
repository: anope/anope repository: anope/anope
- name: Build Anope - name: Build Anope
run: |- run: |
cd $GITHUB_WORKSPACE/anope/ cd $GITHUB_WORKSPACE/anope/
cp $GITHUB_WORKSPACE/data/anope/* . cp $GITHUB_WORKSPACE/data/anope/* .
CFLAGS=-O0 ./Config -quick CFLAGS=-O0 ./Config -quick

View File

@ -5,18 +5,22 @@ jobs:
build-anope: build-anope:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2
- name: Create directories - name: Create directories
run: cd ~/; mkdir -p .local/ go/ run: cd ~/; mkdir -p .local/ go/
- name: Cache Anope - name: Cache dependencies
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
key: 3-${{ runner.os }}-anope-2.0.9 key: 3-${{ runner.os }}-anope-stable
path: '~/.cache path: '~/.cache
${{ github.workspace }}/anope ${ github.workspace }/anope
' '
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Checkout Anope - name: Checkout Anope
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
@ -24,7 +28,7 @@ jobs:
ref: 2.0.9 ref: 2.0.9
repository: anope/anope repository: anope/anope
- name: Build Anope - name: Build Anope
run: |- run: |
cd $GITHUB_WORKSPACE/anope/ cd $GITHUB_WORKSPACE/anope/
cp $GITHUB_WORKSPACE/data/anope/* . cp $GITHUB_WORKSPACE/data/anope/* .
CFLAGS=-O0 ./Config -quick CFLAGS=-O0 ./Config -quick

View File

@ -144,11 +144,7 @@ def get_test_job(*, config, test_config, test_id, version_flavor, jobs):
downloads = [] downloads = []
install_steps = [] install_steps = []
for software_id in test_config.get("software", []): for software_id in test_config.get("software", []):
if software_id == "anope": software_config = config["software"][software_id]
# TODO: don't hardcode anope here
software_config = {"separate_build_job": True}
else:
software_config = config["software"][software_id]
env += test_config.get("env", {}).get(version_flavor.value, "") + " " env += test_config.get("env", {}).get(version_flavor.value, "") + " "
if "prefix" in software_config: if "prefix" in software_config:
@ -245,47 +241,6 @@ def get_test_job(*, config, test_config, test_id, version_flavor, jobs):
} }
def get_build_job_anope():
return {
"runs-on": "ubuntu-latest",
"steps": [
{"uses": "actions/checkout@v2"},
{
"name": "Create directories",
"run": "cd ~/; mkdir -p .local/ go/",
},
{
"name": "Cache Anope",
"uses": "actions/cache@v2",
"with": {
"path": "~/.cache\n${{ github.workspace }}/anope\n",
"key": "3-${{ runner.os }}-anope-2.0.9",
},
},
{
"name": "Checkout Anope",
"uses": "actions/checkout@v2",
"with": {
"repository": "anope/anope",
"ref": "2.0.9",
"path": "anope",
},
},
{
"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",
),
},
*upload_steps("anope"),
],
}
def upload_steps(software_id): def upload_steps(software_id):
"""Make a tarball (to preserve permissions) and upload""" """Make a tarball (to preserve permissions) and upload"""
return [ return [
@ -326,7 +281,6 @@ def generate_workflow(config: dict, version_flavor: VersionFlavor):
} }
jobs = {} jobs = {}
jobs["build-anope"] = get_build_job_anope()
for software_id in config["software"]: for software_id in config["software"]:
software_config = config["software"][software_id] software_config = config["software"][software_id]

View File

@ -301,6 +301,28 @@ software:
separate_build_job: true separate_build_job: true
build_script: *unrealircd_build_script build_script: *unrealircd_build_script
#############################
# Services:
anope:
name: Anope
repository: anope/anope
separate_build_job: true
path: anope
refs:
stable: "2.0.9"
release: "2.0.9"
devel: "2.0.9"
devel_release: "2.0.9"
build_script: |
cd $GITHUB_WORKSPACE/anope/
cp $GITHUB_WORKSPACE/data/anope/* .
CFLAGS=-O0 ./Config -quick
make -C build -j 4
make -C build install
############################# #############################
# Clients: # Clients: