mirror of
https://github.com/huggingface/transformers.git
synced 2025-08-03 03:31:05 +06:00
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
name: Self-hosted runner (scheduled)
|
|
|
|
|
|
on:
|
|
repository_dispatch:
|
|
schedule:
|
|
- cron: "17 2 * * *"
|
|
push:
|
|
branches:
|
|
- fix-dataset-run_object_detection-and-add-torchcodec-trigger-ci
|
|
workflow_dispatch:
|
|
inputs:
|
|
prev_workflow_run_id:
|
|
description: 'previous workflow run id to compare'
|
|
type: string
|
|
required: false
|
|
default: ""
|
|
other_workflow_run_id:
|
|
description: 'other workflow run id to compare'
|
|
type: string
|
|
required: false
|
|
default: ""
|
|
|
|
|
|
# Used for `push` to easily modify the target workflow runs to compare against
|
|
env:
|
|
prev_workflow_run_id: "15988665799"
|
|
other_workflow_run_id: ""
|
|
|
|
|
|
jobs:
|
|
setup:
|
|
name: Setup
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Setup
|
|
run: |
|
|
mkdir "setup_values"
|
|
echo "${{ inputs.prev_workflow_run_id || env.prev_workflow_run_id }}" > "setup_values/prev_workflow_run_id.txt"
|
|
echo "${{ inputs.other_workflow_run_id || env.other_workflow_run_id }}" > "setup_values/other_workflow_run_id.txt"
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: setup_values
|
|
path: setup_values
|
|
|
|
model-ci:
|
|
name: Model CI
|
|
uses: ./.github/workflows/self-scheduled.yml
|
|
with:
|
|
job: run_models_gpu
|
|
slack_report_channel: "#transformers-dummy"
|
|
docker: huggingface/transformers-all-latest-gpu
|
|
ci_event: Daily CI
|
|
report_repo_id: hf-internal-testing/transformers_daily_ci
|
|
secrets: inherit
|