mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-20 18:23:56 +08:00
# Conflicts: # .github/workflows/selfdrive_tests.yaml # common/params_keys.h # msgq_repo # opendbc_repo # panda # selfdrive/car/card.py # selfdrive/car/tests/test_car_interfaces.py # selfdrive/car/tests/test_models.py # selfdrive/test/process_replay/process_replay.py # selfdrive/ui/qt/offroad/settings.cc # selfdrive/ui/translations/main_ar.ts # selfdrive/ui/translations/main_es.ts # selfdrive/ui/translations/main_fr.ts # selfdrive/ui/translations/main_ja.ts # selfdrive/ui/translations/main_ko.ts # selfdrive/ui/translations/main_pt-BR.ts # selfdrive/ui/translations/main_th.ts # selfdrive/ui/translations/main_tr.ts # selfdrive/ui/translations/main_zh-CHS.ts # selfdrive/ui/translations/main_zh-CHT.ts
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: release
|
|
on:
|
|
schedule:
|
|
- cron: '0 9 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build_masterci:
|
|
name: build master-ci
|
|
env:
|
|
ImageOS: ubuntu24
|
|
container:
|
|
image: ghcr.io/commaai/openpilot-base:latest
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'sunnypilot/sunnypilot'
|
|
permissions:
|
|
checks: read
|
|
contents: write
|
|
steps:
|
|
- name: Install wait-on-check-action dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libyaml-dev
|
|
- name: Wait for green check mark
|
|
if: ${{ github.event_name == 'schedule' }}
|
|
uses: lewagon/wait-on-check-action@ccfb013c15c8afb7bf2b7c028fb74dc5a068cccc
|
|
with:
|
|
ref: master
|
|
wait-interval: 30
|
|
running-workflow-name: 'build master-ci'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
check-regexp: ^((?!.*(build prebuilt).*).)*$
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
- name: Pull LFS
|
|
run: |
|
|
git config --global --add safe.directory '*'
|
|
git lfs pull
|
|
- name: Push master-ci
|
|
run: BRANCH=__nightly release/build_devel.sh
|