fix the syntax for the slow/gpu test crons (#10244)

This commit is contained in:
Ryn Daniels 2022-02-09 12:21:20 +02:00 committed by GitHub
parent 10c77af83d
commit 3877f78ff9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,5 @@
name: Weekly GPU tests
on:
schedule:
- cron: '0 1 * * MON'
@ -15,5 +17,4 @@ jobs:
PIPELINE: explosion-ai/spacy-slow-gpu-tests
BRANCH: ${{ matrix.branch }}
MESSAGE: ":github: Weekly GPU + slow tests - triggered from a GitHub Action"
secrets:
BUILDKITE_API_ACCESS_TOKEN: ${{ secrets.BUILDKITE_SECRET }}

View File

@ -1,3 +1,5 @@
name: Daily slow tests
on:
schedule:
- cron: '0 0 * * *'
@ -21,12 +23,10 @@ jobs:
fi
- name: Trigger buildkite build
needs: check_commits
if: needs.check_commits.outputs.run_tests == 'true'
if: steps.check_commits.outputs.run_tests == 'true'
uses: buildkite/trigger-pipeline-action@v1.2.0
env:
PIPELINE: explosion-ai/spacy-slow-tests
BRANCH: ${{ matrix.branch }}
MESSAGE: ":github: Daily slow tests - triggered from a GitHub Action"
secrets:
BUILDKITE_API_ACCESS_TOKEN: ${{ secrets.BUILDKITE_SECRET }}