mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-04 09:50:54 +00:00
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:
parent
2db1324837
commit
46bb2dbd51
@ -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
12
hypervisor/Dockerfile
Normal 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
|
Loading…
Reference in New Issue
Block a user