File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ sudo: required
66
77before_install :
88 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then tools/apt-get-install-deps.sh; fi
9+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then tools/apt-get-install-qemu-arm.sh; fi
910 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then tools/brew-install-deps.sh; fi
1011
1112install :
@@ -15,6 +16,7 @@ script: "make -j VERBOSE=1 NINJA=1 $TARGET"
1516env :
1617 - TARGET="check-signed-off check-vera check-cppcheck"
1718 - TARGET="build.linux test-js-precommit"
19+ - TARGET="build.linux test-js-precommit" TOOLCHAIN=build/configs/toolchain_linux_armv7l-hf.cmake TIMEOUT=300
1820 - TARGET=test-unit
1921
2022matrix :
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # Copyright 2016 Samsung Electronics Co., Ltd.
4+ # Copyright 2016 University of Szeged
5+ #
6+ # Licensed under the Apache License, Version 2.0 (the "License");
7+ # you may not use this file except in compliance with the License.
8+ # You may obtain a copy of the License at
9+ #
10+ # http://www.apache.org/licenses/LICENSE-2.0
11+ #
12+ # Unless required by applicable law or agreed to in writing, software
13+ # distributed under the License is distributed on an "AS IS" BASIS
14+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+ # See the License for the specific language governing permissions and
16+ # limitations under the License.
17+
18+ sudo apt-get update -q
19+ sudo apt-get install -q -y \
20+ gcc-arm-linux-gnueabihf libc6-dev-armhf-cross \
21+ qemu-user-static
You can’t perform that action at this time.
0 commit comments