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

Run GMT Dev Tests on Monday, Wednesday and Friday only #1922

Merged
merged 2 commits into from
May 11, 2022
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
4 changes: 2 additions & 2 deletions .github/workflows/ci_tests_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ on:
- '.gitignore'
repository_dispatch:
types: [test-gmt-dev-command]
# Schedule daily tests
# Schedule tests on Monday/Wednesday/Friday
schedule:
- cron: '0 0 * * *'
- cron: '0 0 * * 1,3,5'

jobs:
test_gmt_dev:
Expand Down
4 changes: 2 additions & 2 deletions doc/maintenance.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ There are 11 configuration files located in `.github/workflows`:
4. `ci_tests_dev.yaml` (GMT Dev Tests on Linux/macOS/Windows).

This is triggered when a PR is marked as "ready for review", or using the
slash command `/test-gmt-dev`. It is also scheduled to run daily on the
*main* branch.
slash command `/test-gmt-dev`. It is also scheduled to run on Monday,
Wednesday and Friday on the *main* branch.

5. `cache_data.yaml` (Caches GMT remote data files needed for GitHub Actions CI)

Expand Down