Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:

# Runs E2E tests using the packages available in the tmp-pr-#PR prerelease
run_e2e_tests_prerelease:
needs: [ setup_environment, sign_suse_packages, upload_official_packages_to_prerelease ]
needs: [ setup_environment,upload_official_packages_to_prerelease ]
name: Run E2E tests by installing NRIA from Production and installing Fluent Bit from the PR pre-release
uses: ./.github/workflows/run_e2e_tests.yml
with:
Expand Down
File renamed without changes.
6 changes: 4 additions & 2 deletions versions/strategyMatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,13 @@ def read_distro_packages(distro_file):


def list_distro_files():
files_testing = ["ubuntu", "amazonlinux"]
try:
return [
filename
for filename in os.listdir(".")
if (filename.endswith(".yml") or filename.endswith(".yaml"))
for filename in os.listdir(".")
if any(filename.startswith(prefix) for prefix in files_testing)
and (filename.endswith(".yml") or filename.endswith(".yaml"))
and filename != "common.yml"
]
except Exception as e:
Expand Down
Loading