mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
fix the syntax for the slow/gpu test crons (#10244)
This commit is contained in:
parent
10c77af83d
commit
3877f78ff9
3
.github/workflows/gputests.yml
vendored
3
.github/workflows/gputests.yml
vendored
|
@ -1,3 +1,5 @@
|
||||||
|
name: Weekly GPU tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 1 * * MON'
|
- cron: '0 1 * * MON'
|
||||||
|
@ -15,5 +17,4 @@ jobs:
|
||||||
PIPELINE: explosion-ai/spacy-slow-gpu-tests
|
PIPELINE: explosion-ai/spacy-slow-gpu-tests
|
||||||
BRANCH: ${{ matrix.branch }}
|
BRANCH: ${{ matrix.branch }}
|
||||||
MESSAGE: ":github: Weekly GPU + slow tests - triggered from a GitHub Action"
|
MESSAGE: ":github: Weekly GPU + slow tests - triggered from a GitHub Action"
|
||||||
secrets:
|
|
||||||
BUILDKITE_API_ACCESS_TOKEN: ${{ secrets.BUILDKITE_SECRET }}
|
BUILDKITE_API_ACCESS_TOKEN: ${{ secrets.BUILDKITE_SECRET }}
|
||||||
|
|
6
.github/workflows/slowtests.yml
vendored
6
.github/workflows/slowtests.yml
vendored
|
@ -1,3 +1,5 @@
|
||||||
|
name: Daily slow tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *'
|
- cron: '0 0 * * *'
|
||||||
|
@ -21,12 +23,10 @@ jobs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Trigger buildkite build
|
- name: Trigger buildkite build
|
||||||
needs: check_commits
|
if: steps.check_commits.outputs.run_tests == 'true'
|
||||||
if: needs.check_commits.outputs.run_tests == 'true'
|
|
||||||
uses: buildkite/trigger-pipeline-action@v1.2.0
|
uses: buildkite/trigger-pipeline-action@v1.2.0
|
||||||
env:
|
env:
|
||||||
PIPELINE: explosion-ai/spacy-slow-tests
|
PIPELINE: explosion-ai/spacy-slow-tests
|
||||||
BRANCH: ${{ matrix.branch }}
|
BRANCH: ${{ matrix.branch }}
|
||||||
MESSAGE: ":github: Daily slow tests - triggered from a GitHub Action"
|
MESSAGE: ":github: Daily slow tests - triggered from a GitHub Action"
|
||||||
secrets:
|
|
||||||
BUILDKITE_API_ACCESS_TOKEN: ${{ secrets.BUILDKITE_SECRET }}
|
BUILDKITE_API_ACCESS_TOKEN: ${{ secrets.BUILDKITE_SECRET }}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user