Add version flavor to workflow name

This commit is contained in:
2021-07-03 16:19:21 +02:00
parent 26fe83d2c6
commit f420b6cb0a
15 changed files with 15 additions and 15 deletions

View File

@ -37,7 +37,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/.local/bin:$PATH make charybdis
name: irctest with Charybdis
name: irctest with Charybdis (stable)
'on':
pull_request: null
push: null

View File

@ -39,7 +39,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/go/bin:$PATH make ergo
name: irctest with Ergo
name: irctest with Ergo (stable)
'on':
pull_request: null
push: null

View File

@ -39,7 +39,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/go/bin:$PATH make ergo
name: irctest with Ergo
name: irctest with Ergo (devel)
'on':
schedule:
- cron: 51 8 * * 6

View File

@ -37,7 +37,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/.local/inspircd/bin:$PATH make inspircd
name: irctest with InspIRCd
name: irctest with InspIRCd (stable)
'on':
pull_request: null
push: null

View File

@ -37,7 +37,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/.local/inspircd/bin:$PATH make inspircd
name: irctest with InspIRCd
name: irctest with InspIRCd (devel)
'on':
schedule:
- cron: 51 8 * * 6

View File

@ -37,7 +37,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/.local/inspircd/bin:$PATH make inspircd
name: irctest with InspIRCd
name: irctest with InspIRCd (devel_release)
'on':
schedule:
- cron: 51 8 * * 6

View File

@ -26,7 +26,7 @@ jobs:
run: pip install limnoria==2021.01.15 cryptography
- name: Test with pytest
run: PATH=~/.local/bin:$PATH make limnoria
name: irctest with Limnoria
name: irctest with Limnoria (stable)
'on':
pull_request: null
push: null

View File

@ -26,7 +26,7 @@ jobs:
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
name: irctest with Limnoria (devel)
'on':
schedule:
- cron: 51 8 * * 6

View File

@ -37,7 +37,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/.local/bin:$PATH make solanum
name: irctest with Solanum
name: irctest with Solanum (stable)
'on':
pull_request: null
push: null

View File

@ -37,7 +37,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/.local/bin:$PATH make solanum
name: irctest with Solanum
name: irctest with Solanum (devel)
'on':
schedule:
- cron: 51 8 * * 6

View File

@ -26,7 +26,7 @@ jobs:
run: pip install sopel==7.0.7
- name: Test with pytest
run: PATH=~/.local/bin:$PATH make sopel
name: irctest with Sopel
name: irctest with Sopel (stable)
'on':
pull_request: null
push: null

View File

@ -26,7 +26,7 @@ jobs:
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
name: irctest with Sopel (devel)
'on':
schedule:
- cron: 51 8 * * 6

View File

@ -37,7 +37,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/.local/unrealircd/bin:$PATH make unrealircd
name: irctest with UnrealIRCd
name: irctest with UnrealIRCd (stable)
'on':
pull_request: null
push: null

View File

@ -37,7 +37,7 @@ jobs:
make install
- name: Test with pytest
run: PATH=~/.local/unrealircd/bin:$PATH make unrealircd
name: irctest with UnrealIRCd
name: irctest with UnrealIRCd (devel)
'on':
schedule:
- cron: 51 8 * * 6

View File

@ -97,7 +97,7 @@ def generate_workflow(config: dict, software_id: str, version_flavor: VersionFla
}
workflow = {
"name": f"irctest with {name}",
"name": f"irctest with {name} ({version_flavor.value})",
"on": on,
"jobs": {
"build": {