Skip to content
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

Update to cronberry 3.1.1 #43

Merged
merged 1 commit into from
Feb 5, 2024
Merged
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 scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2024 Alec Delaney
# SPDX-License-Identifier: MIT

cronberry~=2.1 # This is installed via pipx
cronberry~=3.1 # This is installed via pipx
10 changes: 5 additions & 5 deletions scripts/schedule_cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

REPOPATH=$(realpath .)

PYTHONBIN="$REPOPATH/.venv/bin/python"
PYBINPATH="$REPOPATH/.venv/bin"

UPDATESCRIPTPATH="$REPOPATH/scripts/graphql.py"
UPDATECOMMAND="55 * * * * $PYTHONBIN $UPDATESCRIPTPATH $REPOPATH"
UPDATECOMMAND="55 * * * * python $UPDATESCRIPTPATH $REPOPATH"
UPDATEJOBNAME=$(echo "$REPOPATH" | xargs basename)

DELETESCRIPTPATH="$REPOPATH/scripts/post_graphql.py"
DELETECOMMAND="5 * * * * $PYTHONBIN $DELETESCRIPTPATH $REPOPATH"
DELETECOMMAND="5 * * * * python $DELETESCRIPTPATH $REPOPATH"
DELETEJOBNAME=$(echo "$REPOPATH" | xargs basename)

cronberry enter "Cache new cards for $UPDATEJOBNAME" "$UPDATECOMMAND" --overwrite
cronberry enter "Delete old cards for $DELETEJOBNAME" "$DELETECOMMAND" --overwrite
cronberry enter "Cache new cards for $UPDATEJOBNAME" "$UPDATECOMMAND" --path "$PYBINPATH" --overwrite
cronberry enter "Delete old cards for $DELETEJOBNAME" "$DELETECOMMAND" --path "$PYBINPATH" --overwrite