only run gentoo on branch, black everything

This commit is contained in:
Bryce Larson 2020-12-08 22:22:46 +00:00
parent b0a8c4ae72
commit e83c3cf226
No known key found for this signature in database
GPG key ID: 131C38B0F02DB4CA
10 changed files with 1307 additions and 1245 deletions

1112
.github/workflows/main-branch-only.yml vendored Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -33,5 +33,5 @@ def main(version, sha256sum):
README_PATH.write_text(out_contents) README_PATH.write_text(out_contents)
if __name__ == '__main__': if __name__ == "__main__":
main(sys.argv[1], sys.argv[2]) main(sys.argv[1], sys.argv[2])

View file

@ -6,170 +6,186 @@ import datetime
os.chdir(os.path.abspath(os.path.dirname(__file__))) os.chdir(os.path.abspath(os.path.dirname(__file__)))
LINUX_DISTROS = [ LINUX_DISTROS = [
# 'amazon-1', #'amazon-1',
'amazon-2', "amazon-2",
'arch', "arch",
'centos-7', "centos-7",
'centos-8', "centos-8",
'debian-10', "debian-10",
'debian-9', "debian-9",
'fedora-32', "fedora-32",
'fedora-33', "fedora-33",
'gentoo', "gentoo",
'gentoo-systemd', "gentoo-systemd",
'opensuse-15', "opensuse-15",
'ubuntu-1604', "ubuntu-1604",
'ubuntu-1804', "ubuntu-1804",
'ubuntu-2004', "ubuntu-2004",
] ]
OSX = WINDOWS = [] OSX = WINDOWS = []
STABLE_DISTROS = [ STABLE_DISTROS = [
'amazon-1', "amazon-1",
'amazon-2', "amazon-2",
'centos-7', "centos-7",
'centos-8', "centos-8",
'debian-10', "debian-10",
'debian-9', "debian-9",
'fedora-32', "fedora-32",
'fedora-33', "fedora-33",
'gentoo', "gentoo",
'gentoo-systemd', "gentoo-systemd",
'ubuntu-1604', "ubuntu-1604",
'ubuntu-1804', "ubuntu-1804",
'ubuntu-2004', "ubuntu-2004",
] ]
PY2_BLACKLIST = [ PY2_BLACKLIST = [
'centos-8', "centos-8",
'debian-10', "debian-10",
'fedora-32', "fedora-32",
'fedora-33', "fedora-33",
'gentoo', "gentoo",
'gentoo-systemd', "gentoo-systemd",
'opensuse-15', "opensuse-15",
'ubuntu-2004', "ubuntu-2004",
] ]
PY3_BLACKLIST = [ PY3_BLACKLIST = [
'amazon-1', "amazon-1",
] ]
BLACKLIST_2019 = [ BLACKLIST_2019 = [
'fedora-33', "fedora-33",
'ubuntu-2004', "ubuntu-2004",
] ]
BLACKLIST_3000 = [ BLACKLIST_3000 = [
'fedora-33', "fedora-33",
'ubuntu-2004', "ubuntu-2004",
] ]
SALT_BRANCHES = [ SALT_BRANCHES = [
'2019-2', "2019-2",
'3000', "3000",
'3001', "3001",
'3001-0', "3001-0",
'3002', "3002",
'3002-0', "3002-0",
'master', "master",
'latest' "latest",
] ]
BRANCH_DISPLAY_NAMES = { BRANCH_DISPLAY_NAMES = {
'2019-2': 'v2019.2', "2019-2": "v2019.2",
'3000': 'v3000', "3000": "v3000",
'3001': 'v3001', "3001": "v3001",
'3001-0': 'v3001.0', "3001-0": "v3001.0",
'3002': 'v3002', "3002": "v3002",
'3002-0': 'v3002.0', "3002-0": "v3002.0",
'master': 'Master', "master": "Master",
'latest': 'Latest' "latest": "Latest",
} }
STABLE_BRANCH_BLACKLIST = [ STABLE_BRANCH_BLACKLIST = []
]
LATEST_PKG_BLACKLIST = [ LATEST_PKG_BLACKLIST = [
'arch', # No packages are built "arch", # No packages are built
] ]
DISTRO_DISPLAY_NAMES = { DISTRO_DISPLAY_NAMES = {
'amazon-1': 'Amazon 1', "amazon-1": "Amazon 1",
'amazon-2': 'Amazon 2', "amazon-2": "Amazon 2",
'arch': 'Arch', "arch": "Arch",
'centos-7': 'CentOS 7', "centos-7": "CentOS 7",
'centos-8': 'CentOS 8', "centos-8": "CentOS 8",
'debian-10': 'Debian 10', "debian-10": "Debian 10",
'debian-9': 'Debian 9', "debian-9": "Debian 9",
'fedora-32': 'Fedora 32', "fedora-32": "Fedora 32",
'fedora-33': 'Fedora 33', "fedora-33": "Fedora 33",
'gentoo': 'Gentoo', "gentoo": "Gentoo",
'gentoo-systemd': 'Gentoo (systemd)', "gentoo-systemd": "Gentoo (systemd)",
'opensuse-15': 'Opensuse 15', "opensuse-15": "Opensuse 15",
'ubuntu-1604': 'Ubuntu 16.04', "ubuntu-1604": "Ubuntu 16.04",
'ubuntu-1804': 'Ubuntu 18.04', "ubuntu-1804": "Ubuntu 18.04",
'ubuntu-2004': 'Ubuntu 20.04', "ubuntu-2004": "Ubuntu 20.04",
} }
TIMEOUT_DEFAULT = 20 TIMEOUT_DEFAULT = 20
TIMEOUT_OVERRIDES = { TIMEOUT_OVERRIDES = {
'gentoo': 50, "gentoo": 50,
'gentoo-systemd': 50, "gentoo-systemd": 50,
} }
BRANCH_ONLY_OVERRIDES = [
"gentoo",
"gentoo-systemd",
]
def generate_test_jobs(): def generate_test_jobs():
test_jobs = '' test_jobs = ""
branch_only_test_jobs = ""
for distro in LINUX_DISTROS + OSX + WINDOWS: for distro in LINUX_DISTROS + OSX + WINDOWS:
timeout_minutes = TIMEOUT_OVERRIDES[distro] if distro in TIMEOUT_OVERRIDES else TIMEOUT_DEFAULT timeout_minutes = (
TIMEOUT_OVERRIDES[distro]
if distro in TIMEOUT_OVERRIDES
else TIMEOUT_DEFAULT
)
needs = " needs: lint"
if distro in BRANCH_ONLY_OVERRIDES:
needs = ""
current_test_jobs = ""
for branch in SALT_BRANCHES: for branch in SALT_BRANCHES:
if branch == 'latest': if branch == "latest":
if distro in LATEST_PKG_BLACKLIST: if distro in LATEST_PKG_BLACKLIST:
continue continue
if distro in LINUX_DISTROS: if distro in LINUX_DISTROS:
template = 'linux.yml' template = "linux.yml"
elif distro in OSX: elif distro in OSX:
template = 'osx.yml' template = "osx.yml"
elif distro in WINDOWS: elif distro in WINDOWS:
template = 'windows.yml' template = "windows.yml"
else: else:
print("Don't know how to handle {}".format(distro)) print("Don't know how to handle {}".format(distro))
with open(template) as rfh: with open(template) as rfh:
test_jobs += '\n{}\n'.format( current_test_jobs += "\n{}\n".format(
rfh.read().replace( rfh.read()
'{python_version}-{bootstrap_type}-{branch}-{distro}', .replace(
'{branch}-{distro}' "{python_version}-{bootstrap_type}-{branch}-{distro}",
).format( "{branch}-{distro}",
)
.format(
distro=distro, distro=distro,
branch=branch, branch=branch,
display_name='{} Latest packaged release'.format( display_name="{} Latest packaged release".format(
DISTRO_DISPLAY_NAMES[distro], DISTRO_DISPLAY_NAMES[distro],
), ),
timeout_minutes=timeout_minutes timeout_minutes=timeout_minutes,
needs=needs,
) )
) )
continue continue
for python_version in ('py2', 'py3'): for python_version in ("py2", "py3"):
if branch == 'master' and python_version == 'py2': if branch == "master" and python_version == "py2":
# Salt's master branch no longer supports Python 2 # Salt's master branch no longer supports Python 2
continue continue
try: try:
if int(branch.split('-')[0]) >= 3000 and python_version == 'py2': if int(branch.split("-")[0]) >= 3000 and python_version == "py2":
# Salt's 300X versions no longer supports Python 2 # Salt's 300X versions no longer supports Python 2
continue continue
except ValueError: except ValueError:
pass pass
for bootstrap_type in ('stable', 'git'): for bootstrap_type in ("stable", "git"):
if bootstrap_type == 'stable': if bootstrap_type == "stable":
if branch == 'master': if branch == "master":
# For the master branch there's no stable build # For the master branch there's no stable build
continue continue
if distro not in STABLE_DISTROS: if distro not in STABLE_DISTROS:
@ -184,7 +200,7 @@ def generate_test_jobs():
if bootstrap_type == "git": if bootstrap_type == "git":
# .0 versions are a virtual version for pinning to the first point release of a major release, such as 3001, there is no git version. # .0 versions are a virtual version for pinning to the first point release of a major release, such as 3001, there is no git version.
if branch.endswith('-0'): if branch.endswith("-0"):
continue continue
if python_version == "py3": if python_version == "py3":
@ -199,64 +215,85 @@ def generate_test_jobs():
if branch not in allowed_branches: if branch not in allowed_branches:
# Arch and Fedora default to py3.8 # Arch and Fedora default to py3.8
continue continue
if branch == '2019-2' and distro in BLACKLIST_2019: if branch == "2019-2" and distro in BLACKLIST_2019:
continue continue
if branch == '3000' and distro in BLACKLIST_3000: if branch == "3000" and distro in BLACKLIST_3000:
continue continue
if python_version == 'py2' and distro in PY2_BLACKLIST: if python_version == "py2" and distro in PY2_BLACKLIST:
continue continue
if python_version == 'py3' and distro in PY3_BLACKLIST: if python_version == "py3" and distro in PY3_BLACKLIST:
continue continue
if distro in LINUX_DISTROS: if distro in LINUX_DISTROS:
template = 'linux.yml' template = "linux.yml"
elif distro in OSX: elif distro in OSX:
template = 'osx.yml' template = "osx.yml"
elif distro in WINDOWS: elif distro in WINDOWS:
template = 'windows.yml' template = "windows.yml"
else: else:
print("Don't know how to handle {}".format(distro)) print("Don't know how to handle {}".format(distro))
with open(template) as rfh: with open(template) as rfh:
test_jobs += '\n{}\n'.format( current_test_jobs += "\n{}\n".format(
rfh.read().format( rfh.read().format(
distro=distro, distro=distro,
branch=branch, branch=branch,
python_version=python_version, python_version=python_version,
bootstrap_type=bootstrap_type, bootstrap_type=bootstrap_type,
display_name='{} {} {} {}'.format( display_name="{} {} {} {}".format(
DISTRO_DISPLAY_NAMES[distro], DISTRO_DISPLAY_NAMES[distro],
BRANCH_DISPLAY_NAMES[branch], BRANCH_DISPLAY_NAMES[branch],
python_version.capitalize(), python_version.capitalize(),
bootstrap_type.capitalize() bootstrap_type.capitalize(),
), ),
timeout_minutes=timeout_minutes timeout_minutes=timeout_minutes,
needs=needs,
) )
) )
if distro in BRANCH_ONLY_OVERRIDES:
branch_only_test_jobs += current_test_jobs
else:
test_jobs += current_test_jobs
with open('lint.yml') as rfh: with open("lint.yml") as rfh:
lint_job = '\n{}\n'.format(rfh.read()) lint_job = "\n{}\n".format(rfh.read())
with open('pre-commit.yml') as rfh: with open("pre-commit.yml") as rfh:
pre_commit_job = '\n{}\n'.format(rfh.read()) pre_commit_job = "\n{}\n".format(rfh.read())
with open('../main.yml', 'w') as wfh: with open("../main.yml", "w") as wfh:
with open('main.yml') as rfh: with open("main.yml") as rfh:
wfh.write( wfh.write(
'{}\n'.format( "{}\n".format(
rfh.read().format( rfh.read()
jobs='{pre_commit}{lint}{test}'.format( .format(
lint=lint_job, jobs="{pre_commit}{lint}{test}".format(
test=test_jobs, lint=lint_job, test=test_jobs, pre_commit=pre_commit_job,
pre_commit=pre_commit_job, ),
) on="push, pull_request",
).strip() name="Testing",
)
.strip()
)
)
with open("../main-branch-only.yml", "w") as wfh:
with open("main.yml") as rfh:
wfh.write(
"{}\n".format(
rfh.read()
.format(
jobs="{test}".format(test=branch_only_test_jobs,),
on="push",
name="Branch Testing",
)
.strip()
) )
) )
if __name__ == '__main__': if __name__ == "__main__":
generate_test_jobs() generate_test_jobs()

View file

@ -3,7 +3,7 @@
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: {timeout_minutes} timeout-minutes: {timeout_minutes}
needs: lint {needs}
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1

View file

@ -2,9 +2,9 @@
# #
# This file was generated by .github/workflows/templates/generate.py # This file was generated by .github/workflows/templates/generate.py
name: Testing name: {name}
on: [push, pull_request] on: [{on}]
jobs: jobs:
{jobs} {jobs}

View file

@ -82,12 +82,14 @@ platforms:
run_command: /sbin/init run_command: /sbin/init
provision_command: provision_command:
- rc-update add sshd default - rc-update add sshd default
- emerge --update --deep --with-bdeps=y --newuse @world
- name: gentoo-systemd - name: gentoo-systemd
driver_config: driver_config:
image: gentoo/stage3:systemd image: gentoo/stage3:systemd
run_command: /lib/systemd/systemd run_command: /lib/systemd/systemd
provision_command: provision_command:
- systemctl enable sshd.service - systemctl enable sshd.service
- emerge --update --deep --with-bdeps=y --newuse @world
- name: opensuse-15 - name: opensuse-15
driver_config: driver_config:
image: opensuse/leap:15.1 image: opensuse/leap:15.1

View file

@ -11,6 +11,11 @@ repos:
args: [--fix=lf] args: [--fix=lf]
- id: end-of-file-fixer # Makes sure files end in a newline and only a newline. - id: end-of-file-fixer # Makes sure files end in a newline and only a newline.
- repo: https://github.com/psf/black
rev: 19.10b0
hooks:
- id: black
- repo: local - repo: local
hooks: hooks:
- id: generate-actions-workflow - id: generate-actions-workflow

View file

@ -7,28 +7,38 @@ import logging
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
@pytest.fixture(scope='session') @pytest.fixture(scope="session")
def host(): def host():
if os.environ.get('KITCHEN_USERNAME') == 'vagrant': if os.environ.get("KITCHEN_USERNAME") == "vagrant":
if 'windows' in os.environ.get('KITCHEN_INSTANCE'): if "windows" in os.environ.get("KITCHEN_INSTANCE"):
return testinfra.get_host( return testinfra.get_host(
'winrm://{KITCHEN_USERNAME}:{KITCHEN_PASSWORD}@{KITCHEN_HOSTNAME}:{KITCHEN_PORT}'.format(**os.environ), "winrm://{KITCHEN_USERNAME}:{KITCHEN_PASSWORD}@{KITCHEN_HOSTNAME}:{KITCHEN_PORT}".format(
no_ssl=True) **os.environ
),
no_ssl=True,
)
return testinfra.get_host( return testinfra.get_host(
'paramiko://{KITCHEN_USERNAME}@{KITCHEN_HOSTNAME}:{KITCHEN_PORT}'.format(**os.environ), "paramiko://{KITCHEN_USERNAME}@{KITCHEN_HOSTNAME}:{KITCHEN_PORT}".format(
ssh_identity_file=os.environ.get('KITCHEN_SSH_KEY')) **os.environ
return testinfra.get_host('docker://{KITCHEN_USERNAME}@{KITCHEN_CONTAINER_ID}'.format(**os.environ)) ),
ssh_identity_file=os.environ.get("KITCHEN_SSH_KEY"),
)
return testinfra.get_host(
"docker://{KITCHEN_USERNAME}@{KITCHEN_CONTAINER_ID}".format(**os.environ)
)
@pytest.fixture(scope='session') @pytest.fixture(scope="session")
def target_python_version(): def target_python_version():
target_python = os.environ["KITCHEN_SUITE"].split("-", 1)[0] target_python = os.environ["KITCHEN_SUITE"].split("-", 1)[0]
if target_python == "latest": if target_python == "latest":
pytest.skip("Unable to get target python from {}".format(os.environ["KITCHEN_SUITE"])) pytest.skip(
"Unable to get target python from {}".format(os.environ["KITCHEN_SUITE"])
)
return int(target_python.replace("py", "")) return int(target_python.replace("py", ""))
@pytest.fixture(scope='session') @pytest.fixture(scope="session")
def target_salt_version(): def target_salt_version():
target_salt = os.environ["KITCHEN_SUITE"].split("-", 2)[-1].replace("-", ".") target_salt = os.environ["KITCHEN_SUITE"].split("-", 2)[-1].replace("-", ".")
if target_salt.endswith(".0") and float(target_salt) >= 3000: if target_salt.endswith(".0") and float(target_salt) >= 3000:

View file

@ -9,16 +9,16 @@ log = logging.getLogger(__name__)
def test_ping(host): def test_ping(host):
with host.sudo(): with host.sudo():
assert host.salt('test.ping', '--timeout=120') assert host.salt("test.ping", "--timeout=120")
def test_target_python_version(host, target_python_version): def test_target_python_version(host, target_python_version):
with host.sudo(): with host.sudo():
ret = host.salt('grains.item', 'pythonversion', '--timeout=120') ret = host.salt("grains.item", "pythonversion", "--timeout=120")
assert ret["pythonversion"][0] == target_python_version assert ret["pythonversion"][0] == target_python_version
def test_target_salt_version(host, target_salt_version): def test_target_salt_version(host, target_salt_version):
with host.sudo(): with host.sudo():
ret = host.salt('grains.item', 'saltversion', '--timeout=120') ret = host.salt("grains.item", "saltversion", "--timeout=120")
assert ret["saltversion"].startswith(target_salt_version) assert ret["saltversion"].startswith(target_salt_version)