Periodic Tests by Category #1127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Periodic Tests by Category | |
# | |
# This workflow runs on a schedule with 4 main frequencies, hourly, six-hourly and two daily | |
# (midnight and noon) and for each of those periodicies different sets of test category tags. | |
name: Periodic Tests by Category | |
on: | |
schedule: | |
- cron: '0 * * * *' # Hourly tests | |
- cron: '0 */6 * * *' # Six-hourly tests | |
- cron: '0 0 * * *' # Daily tests (midnight) | |
- cron: '0 12 * * *' # Daily tests (noon) | |
push: | |
branches: | |
- schedule-all # for debugging purposes, a branch name can be used here | |
jobs: | |
hourly-tests: | |
if: github.event.schedule == '0 * * * *' # Hourly schedule | |
strategy: | |
fail-fast: false | |
matrix: | |
category: | |
- BucketManagement | |
- BucketPermission | |
- BucketSharing | |
- BucketLabelling | |
- ColdStorage | |
- ServiceAccounts | |
region: | |
- br-ne1 | |
- br-se1 | |
client: | |
- aws | |
- mgc | |
- rclone | |
name: 1h ${{ matrix.category }} ${{ matrix.region }} ${{ matrix.client }} | |
uses: ./.github/workflows/run-tests.yml | |
with: | |
category: ${{ matrix.category }} | |
region: ${{ matrix.region }} | |
client: ${{ matrix.client }} | |
number_of_waits: ${{ vars.NUMBER_OF_WAITS }} | |
skip_known_issues: ${{ vars.SKIP_KNOWN_ISSUES }} | |
secrets: | |
PROFILES: ${{ secrets.PROFILES }} | |
six-hourly-tests: | |
if: github.event.schedule == '0 */6 * * *' # Six-hourly schedule | |
strategy: | |
fail-fast: false | |
matrix: | |
category: | |
- BucketPolicy | |
- ObjectManagement | |
- ObjectVersioning | |
region: | |
- br-ne1 | |
- br-se1 | |
client: | |
- aws | |
- mgc | |
- rclone | |
name: 6h ${{ matrix.category }} ${{ matrix.region }} ${{ matrix.client }} | |
uses: ./.github/workflows/run-tests.yml | |
with: | |
category: ${{ matrix.category }} | |
region: ${{ matrix.region }} | |
client: ${{ matrix.client }} | |
number_of_waits: ${{ vars.NUMBER_OF_WAITS }} | |
skip_known_issues: ${{ vars.SKIP_KNOWN_ISSUES }} | |
secrets: | |
PROFILES: ${{ secrets.PROFILES }} | |
daily-tests-noon: | |
if: github.event.schedule == '0 12 * * *' # Daily schedule (noon) | |
strategy: | |
matrix: | |
category: | |
- BigObjects | |
region: | |
- br-ne1 | |
- br-se1 | |
client: | |
- aws | |
- mgc | |
- rclone | |
name: 1d ${{ matrix.category }} ${{ matrix.region }} ${{ matrix.client }} | |
uses: ./.github/workflows/run-tests.yml | |
with: | |
category: ${{ matrix.category }} | |
region: ${{ matrix.region }} | |
client: ${{ matrix.client }} | |
number_of_waits: ${{ vars.NUMBER_OF_WAITS }} | |
skip_known_issues: ${{ vars.SKIP_KNOWN_ISSUES }} | |
secrets: | |
PROFILES: ${{ secrets.PROFILES }} | |
daily-tests-midnight: | |
if: github.event.schedule == '0 0 * * *' # Daily schedule (midnight) | |
strategy: | |
matrix: | |
category: | |
- BigBuckets | |
# - ObjectLocking # Disabled while Magalu Cloud doesn't launch the feature | |
region: | |
- br-ne1 | |
- br-se1 | |
client: | |
- aws | |
- mgc | |
- rclone | |
name: 1d ${{ matrix.category }} ${{ matrix.region }} ${{ matrix.client }} | |
uses: ./.github/workflows/run-tests.yml | |
with: | |
category: ${{ matrix.category }} | |
region: ${{ matrix.region }} | |
client: ${{ matrix.client }} | |
number_of_waits: ${{ vars.NUMBER_OF_WAITS }} | |
skip_known_issues: ${{ vars.SKIP_KNOWN_ISSUES }} | |
secrets: | |
PROFILES: ${{ secrets.PROFILES }} |