You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
451 B
14 lines
451 B
#!/bin/bash |
|
# |
|
# Crosscompiles protobuf C++ under dockcross docker image and runs the tests under an emulator. |
|
|
|
set -e |
|
|
|
# go to the repo root |
|
cd $(dirname $0)/../../.. |
|
|
|
# Initialize any submodules. |
|
git submodule update --init --recursive |
|
|
|
# run the C++ build and test script under dockcross/linux-arm64 image |
|
kokoro/linux/aarch64/dockcross_helpers/run_dockcross_linux_aarch64.sh kokoro/linux/aarch64/cpp_crosscompile_and_run_tests_with_qemu_aarch64.sh
|
|
|