From 5adfaf6ac2784ebd3e84c7b5e98f7ddbd92f9fdf Mon Sep 17 00:00:00 2001 From: Brandon Bayer Date: Mon, 12 Dec 2016 15:28:00 -0600 Subject: chore: add .gitlab-ci.yml --- .gitlab-ci.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..9b2a6a3 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,35 @@ +variables: + GIT_STRATEGY: none + +before_script: + - test -d mlinux || git clone git@gitlab.multitech.net:mirrors/mlinux.git + - cd mlinux + - git pull + - (test -f env-oe.sh && ./setup.sh --update) || ./setup.sh + - source env-oe.sh + - cd layers/meta-multitech + - git checkout $CI_BUILD_REF + - cd ../.. + +cache: + untracked: true + +mtcdt_mlinux: + stage: build + tags: + - mlinux + script: + - bitbake mlinux-factory-image + artifacts: + paths: + - mlinux/build/tmp/deploy/images/mtcdt/*-upgrade.bin + +mtcap_mlinux: + stage: build + tags: + - mlinux + script: + - MACHINE=mtcap bitbake mlinux-mtcap-image + artifacts: + paths: + - mlinux/build/tmp/deploy/images/mtcap/*-upgrade.bin -- cgit v1.2.3