forked from thesofproject/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (26 loc) · 935 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
language: c
git:
depth: false
before_install:
- sudo apt-get update -qq
- sudo apt-get install python-ply python-git libelf-dev codespell
- git clone https://github.com/thesofproject/kconfig.git
jobs:
include:
- if: type = pull_request
name: checkpatch
script: scripts/checkpatch.pl --strict --codespell -g $TRAVIS_COMMIT_RANGE
- name: "BUILD SOF Kernel x86_64"
script:
- export ARCH=x86_64
- make defconfig
- scripts/kconfig/merge_config.sh .config kconfig/base-defconfig kconfig/sof-defconfig
- echo `getconf _NPROCESSORS_ONLN`
- make -j`getconf _NPROCESSORS_ONLN`
- name: "BUILD SST Kernel x86_64"
script:
- export ARCH=x86_64
- make defconfig
- scripts/kconfig/merge_config.sh .config kconfig/base-defconfig kconfig/sst-defconfig
- echo `getconf _NPROCESSORS_ONLN`
- make -j`getconf _NPROCESSORS_ONLN`