Add initial .travis.yml and Dockerfile (Clearlinux)

Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
Signed-off-by: T <shrmrf@users.noreply.github.com>
This commit is contained in:
Geoffroy Van Cutsem 2018-04-04 23:50:38 +02:00 committed by Jack Ren
parent 2db1324837
commit 46bb2dbd51
2 changed files with 23 additions and 3 deletions

View File

@ -1,4 +1,12 @@
sudo: required
language: c
compiler:
- gcc
script: make clean && make all
services:
- docker
before_install:
- docker ps -a
script:
- docker build -t shrmrf/acrn-hypervisor .

12
hypervisor/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM clearlinux:base
MAINTAINER shrmrf "https://github.com/shrmrf"
# Install packages for building acrn
# RUN swupd update
RUN swupd bundle-add os-core-dev
RUN git config --global http.sslVerify false
COPY . /root/acrn-hypervisor
RUN cd /root/acrn-hypervisor; make clean && make PLATFORM=uefi