-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: This PR is to trigger periodic CI testing #722
Draft
systemroller
wants to merge
20
commits into
main
Choose a base branch
from
weekly-ci
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
6198ed9
ci: This PR is to trigger periodic CI testing
github-actions[bot] f59207c
ci: This PR is to trigger periodic CI testing
github-actions[bot] 5e5073c
ci: This PR is to trigger periodic CI testing
github-actions[bot] 2d2a59f
ci: This PR is to trigger periodic CI testing
github-actions[bot] e7b7c4a
ci: This PR is to trigger periodic CI testing
github-actions[bot] 4d2a066
ci: This PR is to trigger periodic CI testing
github-actions[bot] 9dfd348
ci: This PR is to trigger periodic CI testing
github-actions[bot] d98900f
ci: This PR is to trigger periodic CI testing
github-actions[bot] 8bee12d
ci: This PR is to trigger periodic CI testing
github-actions[bot] 96e3e9f
ci: This PR is to trigger periodic CI testing
github-actions[bot] 4e6ce53
ci: This PR is to trigger periodic CI testing
github-actions[bot] 996eaa4
ci: This PR is to trigger periodic CI testing
github-actions[bot] 1672868
ci: This PR is to trigger periodic CI testing
github-actions[bot] d97c583
ci: This PR is to trigger periodic CI testing
github-actions[bot] 70bd242
ci: This PR is to trigger periodic CI testing
github-actions[bot] 039de4f
ci: This PR is to trigger periodic CI testing
github-actions[bot] 499b7d7
ci: This PR is to trigger periodic CI testing
github-actions[bot] 957eb94
ci: This PR is to trigger periodic CI testing
github-actions[bot] 2c2a987
ci: This PR is to trigger periodic CI testing
github-actions[bot] c22edc1
ci: This PR is to trigger periodic CI testing
github-actions[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (C) 2023, Red Hat, Inc. | ||
# SPDX-License-Identifier: MIT | ||
|
||
from __future__ import absolute_import, division, print_function | ||
|
||
__metaclass__ = type | ||
|
||
DOCUMENTATION = """ | ||
author: Rich Megginson | ||
name: dump_packages | ||
type: aggregate | ||
short_description: dump arguments to package module | ||
description: | ||
- Dump arguments to package module to get list of packages. | ||
- Used in conjunction with CI testing to get the packages used | ||
- with all combinations of: distribution/version/role arguments | ||
- Used to generate lists of packages for ostree image builds. | ||
requirements: | ||
- None | ||
""" | ||
|
||
from ansible.plugins.callback import CallbackBase # noqa: E402 | ||
|
||
|
||
class CallbackModule(CallbackBase): | ||
""" | ||
Dump packages. | ||
""" | ||
|
||
CALLBACK_VERSION = 2.0 | ||
CALLBACK_TYPE = "aggregate" | ||
CALLBACK_NAME = "dump_packages" | ||
# needed for 2.9 compatibility | ||
CALLBACK_NEEDS_WHITELIST = False # wokeignore:rule=whitelist | ||
CALLBACK_NEEDS_ENABLED = False | ||
|
||
def __init__(self, *args, **kwargs): | ||
super(CallbackModule, self).__init__(*args, **kwargs) | ||
|
||
def v2_runner_on_ok(self, result): | ||
fields = result._task_fields | ||
if ( | ||
fields["action"] in ["package", "dnf", "yum"] | ||
and fields["args"].get("state") != "absent" | ||
): | ||
packages = set() | ||
if "invocation" in result._result: | ||
results = [result._result] | ||
elif "results" in result._result and isinstance( | ||
result._result["results"], list | ||
): | ||
results = result._result["results"] | ||
for item in results: | ||
pkgs = item["invocation"]["module_args"]["name"] | ||
if isinstance(pkgs, list): | ||
for ii in pkgs: | ||
packages.add(ii) | ||
else: | ||
packages.add(pkgs) | ||
# tell python black that this line is ok | ||
# fmt: off | ||
self._display.display("lsrpackages: " + " ".join(sorted(list(packages)))) | ||
# fmt: on |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check failure
Code scanning / CodeQL
Potentially uninitialized local variable