summaryrefslogtreecommitdiffstats
path: root/scripts/ci/Dockerfile.checkout
diff options
context:
space:
mode:
authorLaurent Bonnans <laurent.bonnans@here.com>2019-07-04 15:35:44 +0200
committerMykhaylo Sul <ext-mykhaylo.sul@here.com>2019-07-17 16:06:00 +0300
commit14bedef5860abc352d7cfe957f2c3781cf29d52c (patch)
tree3da162e9622eaff609aa8fb2d13624fbd26eb3ee /scripts/ci/Dockerfile.checkout
parent9da34c89fcb8dc01137c568d2823aedd56a349e1 (diff)
downloadmeta-updater-14bedef5860abc352d7cfe957f2c3781cf29d52c.tar.gz
Gitlab pipeline for building core-image-minimal
Including these points (initially as separate commits): * Try caching updater-repo in gitlab * Only patch aktualizr recipe in CI if needed * Run under user 4321 in bitbake docker image * Add ability to supply METADIR to envsetup.sh So that we can bypass the "relative path from the script" trick that doesn't work with symlinks. * Checkout the PR base branch * do not run on pushes * run on runners with "gitlab" tag * Print all revisions after repo checkout on CI * Pull CI image from the base branch instead of master * More robust checkout in CI * Only store updater-repo artifacts for one day * Use "stretch" instead of "stable" for Debian release in Dockerfile (in fact, stable just changed to buster) * Move UPDATER_REPO variable out of .gitlab-ci.yml To be defined in the project's settings * Make docker CI stage buildable on shared runners Signed-off-by: Laurent Bonnans <laurent.bonnans@here.com>
Diffstat (limited to 'scripts/ci/Dockerfile.checkout')
-rw-r--r--scripts/ci/Dockerfile.checkout9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/ci/Dockerfile.checkout b/scripts/ci/Dockerfile.checkout
new file mode 100644
index 0000000..efec234
--- /dev/null
+++ b/scripts/ci/Dockerfile.checkout
@@ -0,0 +1,9 @@
1FROM debian:stretch-slim
2LABEL Description="Image for checking out updater-repo"
3
4RUN sed -i 's#deb http://deb.debian.org/debian stretch main#deb http://deb.debian.org/debian stretch main contrib#g' /etc/apt/sources.list
5RUN sed -i 's#deb http://deb.debian.org/debian stretch-updates main#deb http://deb.debian.org/debian stretch-updates main contrib#g' /etc/apt/sources.list
6RUN apt-get update -q && apt-get install -qy \
7 git \
8 repo \
9 xmlstarlet