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
6
6
7
7
before_install :
8
8
- 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
9
10
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then tools/brew-install-deps.sh; fi
10
11
11
12
install : make prerequisites
@@ -15,6 +16,7 @@ script: "make -j VERBOSE=1 NINJA=1 $TARGET"
15
16
env :
16
17
- TARGET="check-signed-off check-vera check-cppcheck"
17
18
- TARGET="build.linux test-js-precommit"
19
+ - TARGET="build.linux test-js-precommit" TOOLCHAIN=build/configs/toolchain_linux_armv7l-hf.cmake TIMEOUT=60
18
20
- TARGET=build.mcu_stm32f3
19
21
- TARGET=build.mcu_stm32f4
20
22
- TARGET=test-unit
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