mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 22:23:56 +08:00
* initial updates to the actions to run for sp * ignore license file * more updates * undoing some of the changes because I was blocking the runs on * allowing the submodule check as well * Allowing macos builds * test adding cache key * don't attempt build_release for selfdrive for the time being. * Blocking macos builds as well since they have a 10x miltiplier for GH aciton minutes, waaaay too much! * lol nice typo codespell * change ref commit id to check if replay passes
22 lines
519 B
YAML
22 lines
519 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 }}
|
|
tools_tests:
|
|
uses: sunnypilot/sunnypilot/.github/workflows/tools_tests.yaml@master
|
|
with:
|
|
run_number: ${{ inputs.run_number }}
|