mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-10 01:02:08 +08:00
c59455d3f8
* no internal * Update README.md * testing * rm private submodules * do this the normal way now * rm agnos-firmware * add size * fix mac * files
15 lines
260 B
Bash
Executable File
15 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
cd $DIR/..
|
|
|
|
./build_kernel.sh
|
|
./build_system.sh
|
|
scripts/package_ota.py
|
|
|
|
# push to azure on an internal machine
|
|
if [ "$USER" == "batman" ]; then
|
|
scripts/ota_push.sh staging
|
|
fi
|