mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2026-02-07 16:03:01 +00:00
30 lines
764 B
YAML
30 lines
764 B
YAML
language: c
|
|
|
|
os: linux
|
|
dist: trusty
|
|
sudo: required
|
|
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then tools/apt-get-install-deps.sh; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then tools/apt-get-install-qemu-arm.sh; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then tools/brew-install-deps.sh; fi
|
|
|
|
install:
|
|
|
|
script: "make -j VERBOSE=1 NINJA=1 $TARGET"
|
|
|
|
env:
|
|
- TARGET="check-signed-off check-vera check-cppcheck"
|
|
- TARGET="build.linux test-js-precommit"
|
|
- TARGET="build.linux test-js-precommit" TOOLCHAIN=build/configs/toolchain_linux_armv7l-hf.cmake TIMEOUT=300
|
|
- TARGET=test-unit
|
|
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
env: TARGET="build.darwin test-js-precommit"
|
|
- os: osx
|
|
env: TARGET=test-unit
|
|
allow_failures:
|
|
- os: osx
|