Skip to content

Commit

Permalink
Fix check snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
kwk committed Feb 10, 2025
1 parent 412a453 commit 7c694d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/check-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,13 @@ jobs:
yyyymmdd=$(date --date='${{matrix.today_minus_n_days}} days ago' +%Y%m%d)
fi
# shellcheck disable=SC2086
python3 snapshot_manager/main.py \
--github-repo "${GITHUB_REPOSITORY}" \
--github-token-env GITHUB_TOKEN \
check "${extra_args}"\
check ${extra_args} \
--maintainer-handle ${{matrix.maintainer_handle}} \
--packages llvm \
--build-strategy ${{matrix.name}} \
--copr-ownername ${{matrix.copr_ownername}} \
--copr-project-tpl ${{matrix.copr_project_tpl}} \
Expand Down
5 changes: 0 additions & 5 deletions snapshot_manager/snapshot_manager/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@ class Config:

packages: list[str] = dataclasses.field(
default_factory=lambda: [
"python-lit",
"llvm",
"clang",
"lld",
"compiler-rt",
"libomp",
]
)
"""List of packages that are relevant to you."""
Expand Down

0 comments on commit 7c694d8

Please sign in to comment.