mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-26 13:52:04 +08:00
14318d2f09
# Conflicts: # .github/labeler.yaml # .github/workflows/auto_pr_review.yaml # .github/workflows/docs.yaml # .github/workflows/release.yaml # .github/workflows/repo-maintenance.yaml # .github/workflows/tests.yaml # .github/workflows/ui_preview.yaml # README.md # SConstruct # conftest.py # docs/CARS.md # msgq_repo # opendbc_repo # openpilot/cereal/messaging/tests/validate_sp_cereal_upstream.py # openpilot/common/api.py # openpilot/common/hardware/hw.py # openpilot/common/version.py # openpilot/selfdrive/assets/fonts/Audiowide-Regular.ttf # openpilot/selfdrive/assets/sounds/prompt_single_high.wav # openpilot/selfdrive/assets/sounds/prompt_single_low.wav # openpilot/selfdrive/car/card.py # openpilot/selfdrive/car/helpers.py # openpilot/selfdrive/car/tests/test_car_interfaces.py # openpilot/selfdrive/car/tests/test_cruise_speed.py # openpilot/selfdrive/controls/lib/desire_helper.py # openpilot/selfdrive/controls/lib/longcontrol.py # openpilot/selfdrive/controls/plannerd.py # openpilot/selfdrive/controls/radard.py # openpilot/selfdrive/controls/tests/test_longcontrol.py # openpilot/selfdrive/modeld/compile_warp.py # openpilot/selfdrive/modeld/modeld.py # openpilot/selfdrive/monitoring/policy.py # openpilot/selfdrive/monitoring/test_monitoring.py # openpilot/selfdrive/selfdrived/events.py # openpilot/selfdrive/selfdrived/selfdrived.py # openpilot/selfdrive/ui/layouts/onboarding.py # openpilot/selfdrive/ui/mici/layouts/onboarding.py # openpilot/selfdrive/ui/soundd.py # openpilot/selfdrive/ui/tests/diff/replay.py # openpilot/selfdrive/ui/translations/app.pot # openpilot/system/athena/athenad.py # openpilot/system/athena/manage_athenad.py # openpilot/system/hardware/hardwared.py # openpilot/system/loggerd/config.py # openpilot/system/manager/github_runner.sh # openpilot/system/manager/manager.py # openpilot/system/updated/updated.py # panda # pyproject.toml # scripts/lint/lint.sh # system/manager/process_config.py # system/statsd.py # tinygrad_repo # tools/release/build_release.sh # tools/release/build_stripped.sh # uv.lock
107 lines
2.4 KiB
Bash
Executable File
107 lines
2.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
set -x
|
|
|
|
# git diff --name-status origin/release3-staging | grep "^A" | less
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
|
|
cd $DIR
|
|
|
|
BUILD_DIR=/data/openpilot
|
|
SOURCE_DIR="$(git rev-parse --show-toplevel)"
|
|
|
|
if [ -z "$RELEASE_BRANCH" ]; then
|
|
echo "RELEASE_BRANCH is not set"
|
|
exit 1
|
|
fi
|
|
|
|
BUILD_BRANCH=release-mici-staging
|
|
|
|
|
|
# set git identity
|
|
source $DIR/identity.sh
|
|
|
|
echo "[-] Setting up repo T=$SECONDS"
|
|
rm -rf $BUILD_DIR
|
|
mkdir -p $BUILD_DIR
|
|
cd $BUILD_DIR
|
|
git init
|
|
git remote add origin git@github.com:commaai/openpilot.git
|
|
git checkout --orphan $BUILD_BRANCH
|
|
|
|
# do the files copy
|
|
echo "[-] copying files T=$SECONDS"
|
|
cd $SOURCE_DIR
|
|
cp -pR --parents $(./tools/release/release_files.py) $BUILD_DIR/
|
|
|
|
# in the directory
|
|
cd $BUILD_DIR
|
|
|
|
rm -f panda/board/obj/panda.bin.signed
|
|
rm -f panda/board/obj/panda_h7.bin.signed
|
|
|
|
VERSION=$(cat openpilot/sunnypilot/common/version.h | awk -F[\"-] '{print $2}')
|
|
echo "[-] committing version $VERSION T=$SECONDS"
|
|
git add -f .
|
|
git commit -a -m "openpilot v$VERSION release"
|
|
|
|
# Build
|
|
export PYTHONPATH="$BUILD_DIR"
|
|
scons
|
|
|
|
if [ -z "$PANDA_DEBUG_BUILD" ]; then
|
|
# release panda fw
|
|
CERT=/data/pandaextra/certs/release RELEASE=1 scons panda/
|
|
else
|
|
# build with ALLOW_DEBUG=1 to enable features like experimental longitudinal
|
|
scons panda/
|
|
fi
|
|
|
|
# Ensure no submodules in release
|
|
if test "$(git submodule--helper list | wc -l)" -gt "0"; then
|
|
echo "submodules found:"
|
|
git submodule--helper list
|
|
exit 1
|
|
fi
|
|
git submodule status
|
|
|
|
# Cleanup
|
|
find . -name '*.a' -delete
|
|
find . -name '*.o' -delete
|
|
find . -name '*.os' -delete
|
|
find . -name '*.pyc' -delete
|
|
find . -name 'moc_*' -delete
|
|
find . -name '__pycache__' -delete
|
|
rm -rf .sconsign.dblite Jenkinsfile tools/release/
|
|
rm -f openpilot/selfdrive/modeld/models/*.onnx*
|
|
rm -f openpilot/sunnypilot/modeld*/models/*.onnx*
|
|
|
|
find openpilot/third_party/ -name '*x86*' -exec rm -r {} +
|
|
find openpilot/third_party/ -name '*Darwin*' -exec rm -r {} +
|
|
|
|
|
|
# Restore third_party
|
|
git checkout openpilot/third_party/
|
|
|
|
# Mark as prebuilt release
|
|
touch prebuilt
|
|
|
|
# Add built files to git
|
|
git add -f .
|
|
git commit --amend -m "openpilot v$VERSION"
|
|
|
|
# Run tests
|
|
cd $BUILD_DIR
|
|
RELEASE=1 pytest -n0 -s openpilot/selfdrive/test/test_onroad.py
|
|
#pytest openpilot/selfdrive/car/tests/test_car_interfaces.py
|
|
|
|
echo "[-] pushing release T=$SECONDS"
|
|
REFS=()
|
|
for branch in ${RELEASE_BRANCH//,/ }; do
|
|
REFS+=("$BUILD_BRANCH:$branch")
|
|
done
|
|
git push -f origin "${REFS[@]}"
|
|
|
|
echo "[-] done T=$SECONDS"
|