[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 8/8] .gitlab-ci: add build-libvhost-user
|
From: |
marcandre . lureau |
|
Subject: |
[PATCH v2 8/8] .gitlab-ci: add build-libvhost-user |
|
Date: |
Wed, 25 Nov 2020 14:06:40 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
.gitlab-ci.yml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d0173e82b1..e517506c35 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -455,6 +455,17 @@ check-dco:
variables:
GIT_DEPTH: 1000
+build-libvhost-user:
+ stage: build
+ image: $CI_REGISTRY_IMAGE/qemu/fedora:latest
+ before_script:
+ - dnf install -y meson ninja-build
+ script:
+ - mkdir subprojects/libvhost-user/build
+ - cd subprojects/libvhost-user/build
+ - meson
+ - ninja
+
pages:
image: $CI_REGISTRY_IMAGE/qemu/ubuntu2004:latest
stage: test
--
2.29.0
- [PATCH v2 0/8] libvhost-user: make it a subproject (was: "lower dependency on QEMU headers"), marcandre . lureau, 2020/11/25
- [PATCH v2 1/8] libvhost-user: replace qemu/bswap.h with glibc endian.h, marcandre . lureau, 2020/11/25
- [PATCH v2 2/8] libvhost-user: replace qemu/memfd.h usage, marcandre . lureau, 2020/11/25
- [PATCH v2 3/8] libvhost-user: remove qemu/compiler.h usage, marcandre . lureau, 2020/11/25
- [PATCH v2 4/8] libvhost-user: drop qemu/osdep.h dependency, marcandre . lureau, 2020/11/25
- [PATCH v2 5/8] libvhost-user: make it a meson subproject, marcandre . lureau, 2020/11/25
- [PATCH v2 6/8] libvhost-user: check memfd API, marcandre . lureau, 2020/11/25
- [PATCH v2 7/8] libvhost-user: add a simple link test without glib, marcandre . lureau, 2020/11/25
- [PATCH v2 8/8] .gitlab-ci: add build-libvhost-user,
marcandre . lureau <=