mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 23:33:58 +08:00
# Conflicts: # .github/workflows/ci_weekly_run.yaml # opendbc_repo # panda # selfdrive/test/process_replay/ref_commit
18 lines
377 B
YAML
18 lines
377 B
YAML
name: weekly CI test run
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
run_number:
|
|
required: true
|
|
type: string
|
|
|
|
concurrency:
|
|
group: ci-run-${{ inputs.run_number }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
selfdrive_tests:
|
|
uses: sunnypilot/sunnypilot/.github/workflows/selfdrive_tests.yaml@master
|
|
with:
|
|
run_number: ${{ inputs.run_number }}
|