Skip to content

Commit

Permalink
Merge pull request #1247 from gboeing/actions
Browse files Browse the repository at this point in the history
adjust weekly scheduling of workflows
  • Loading branch information
gboeing authored Dec 9, 2024
2 parents 5a5a4c7 + b3faf51 commit 1113f0d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags:
- '*'
schedule:
- cron: "30 6 * * 1" # every monday at 06:30 UTC
- cron: "50 4 * * 1" # every monday at 04:50 UTC
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags:
- 'v*'
schedule:
- cron: "0 6 * * 1" # every monday at 06:00 UTC
- cron: "40 4 * * 1" # every monday at 04:40 UTC
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docs-linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build docs and check links

on:
schedule:
- cron: "30 4 * * 1" # every monday at 04:30 UTC
- cron: "10 4 * * 1" # every monday at 04:10 UTC
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-latest-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test latest/pre-release dependencies

on:
schedule:
- cron: "30 5 * * 1" # every monday at 05:30 UTC
- cron: "30 4 * * 1" # every monday at 04:30 UTC
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-minimum-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test minimum dependencies

on:
schedule:
- cron: "0 5 * * 1" # every monday at 05:00 UTC
- cron: "20 4 * * 1" # every monday at 04:20 UTC
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion environments/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY --chmod=0755 ./pyproject.toml ./osmnx/
COPY --chmod=0755 ./README.md ./osmnx/

# install and configuration everything in one RUN to keep image tidy
RUN conda update --yes -c conda-forge --strict-channel-priority -n base mamba && \
RUN conda update --yes -c conda-forge --strict-channel-priority -n base conda mamba && \
mamba install --update-all --force-reinstall --yes -c conda-forge --strict-channel-priority --file ./osmnx/requirements.txt && \
python -m pip install --no-cache-dir -e ./osmnx/ && \
python -m ipykernel install --sys-prefix --name ox --display-name "Python (ox)" && \
Expand Down

0 comments on commit 1113f0d

Please sign in to comment.