-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (37 loc) · 759 Bytes
/
.travis.yml
File metadata and controls
37 lines (37 loc) · 759 Bytes
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
30
31
32
33
34
35
36
37
language: cpp
cache: ccache
sudo: required
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- clang-3.5
- gcc-aarch64-linux-gnu
- g++-aarch64-linux-gnu
- bc
- git
- qemu-user
before_install:
- git clone --recursive https://github.com/qemu/qemu
- cd qemu
- mkdir build
- cd build
- ../configure --target-list=aarch64-softmmu,x86_64-softmmu
- make -j3
- export QEMU_BUILD_DIR=`pwd`
- cd ../..
script:
- ./run.sh x86 build
- ./run.sh arm64 build
compiler:
- clang
- gcc
notifications:
email:
recipients:
- bobby.prani@gmail.com
on_success: change
on_failure: always