15 lines
197 B
Bash
Executable file
15 lines
197 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
set -x
|
|
|
|
script/ci-custom.py
|
|
script/lint-python
|
|
script/lint-cpp
|
|
script/unit_test
|
|
script/component_test
|
|
script/test
|
|
script/test_build_components
|