From: Jan Kiszka <[email protected]> Just build all images, first with the Jailhouse release, then with latest.
Signed-off-by: Jan Kiszka <[email protected]> --- .gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c4d96e2 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +image: kasproject/kas-isar:latest + +variables: + GIT_STRATEGY: clone + +all: + stage: build + script: + - export http_proxy=$HTTP_PROXY + - export https_proxy=$HTTPS_PROXY + - export ftp_proxy=$FTP_PROXY + - export no_proxy=$NO_PROXY + - while read MACHINE DESCRIPTION; do + KAS_TARGET="${KAS_TARGET} multiconfig:${MACHINE}-jailhouse:demo-image-${MACHINE}"; + done < images.list + - export KAS_TARGET + - cd .. + - kas build jailhouse-images/kas.yml + - kas build jailhouse-images/kas-latest.yml -- 2.16.4 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
