Skip to content
Merged
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
14 changes: 8 additions & 6 deletions .github/workflows/weekly_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ name: Weekly Tests
on:
workflow_dispatch:

schedule:
# * is a special character in YAML so you have to quote this string
# At 22:00 on Sunday
# Timezone is UTC, so Paris time is +2 during the summer and +1 during winter
- cron: '0 22 * * 0'
# Disable weekly tests
# FIXME: https://github.com/zama-ai/concrete-ml-internal/issues/4742
# schedule:
# # * is a special character in YAML so you have to quote this string
# # At 22:00 on Sunday
# # Timezone is UTC, so Paris time is +2 during the summer and +1 during winter
# - cron: '0 22 * * 0'

concurrency:
group: "${{ github.ref }}-${{ github.event_name }}-weekly-tests"
cancel-in-progress: true

jobs:
# The caller workflow's job (here 'weekly-tests') does not need to run on the current runner as
# The caller workflow's job (here 'weekly-tests') does not need to run on the current runner as
# the reusable workflow (here 'continuous-integration.yaml') uses its own runner
# Only allow weekly tests on the public repository
weekly-tests:
Expand Down
Loading