You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
501 B
YAML
27 lines
501 B
YAML
branches:
|
|
only:
|
|
- master
|
|
- dev
|
|
language: java
|
|
os:
|
|
- linux
|
|
- osx
|
|
dist: focal
|
|
osx_image: xcode12.2
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- xz-utils
|
|
- libblkid-dev
|
|
- liblz4-tool
|
|
- device-tree-compiler
|
|
- python3
|
|
- python-all
|
|
before_install:
|
|
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update ; fi
|
|
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install lz4 dtc ; fi
|
|
before_script:
|
|
- ./gradlew check && ./gradlew clean
|
|
script:
|
|
- ./integrationTest.py
|