summaryrefslogtreecommitdiffstats
path: root/scripts/ci/checkout-oe.sh
diff options
context:
space:
mode:
authorLaurent Bonnans <laurent.bonnans@here.com>2019-07-04 15:35:44 +0200
committerLaurent Bonnans <laurent.bonnans@here.com>2019-07-09 15:15:13 +0200
commit53aea9033ea5b684bcfa5bbece54a985df3223bb (patch)
treed7a2e6a3602c7b271ef2f6bb6a2c0e3efdb96ca2 /scripts/ci/checkout-oe.sh
parent37201eba4e17aea092a242b793424135cba3c8b8 (diff)
downloadmeta-updater-53aea9033ea5b684bcfa5bbece54a985df3223bb.tar.gz
Gitlab pipeline for building core-image-minimalci/gitlab-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/checkout-oe.sh')
-rwxr-xr-xscripts/ci/checkout-oe.sh44
1 files changed, 44 insertions, 0 deletions
diff --git a/scripts/ci/checkout-oe.sh b/scripts/ci/checkout-oe.sh
new file mode 100755
index 0000000..9a4ade2
--- /dev/null
+++ b/scripts/ci/checkout-oe.sh
@@ -0,0 +1,44 @@
1#!/usr/bin/env bash
2
3set -euo pipefail
4
5set -x
6
7REMOTE_SOURCE=${REMOTE_SOURCE:-https://github.com/advancedtelematic}
8MANIFEST=${MANIFEST:-master}
9CURRENT_PROJECT=${CURRENT_PROJECT:-meta-updater}
10
11#CURRENT_REV=$(git rev-parse HEAD)
12LOCAL_REPO=$PWD
13
14mkdir -p updater-repo
15
16cd updater-repo
17
18repo init -m "${MANIFEST}.xml" -u "$REMOTE_SOURCE/updater-repo"
19
20git -C .repo/manifests reset --hard
21
22# patch manifest
23MANIFEST_FILE=".repo/manifests/${MANIFEST}.xml"
24xmlstarlet ed --omit-decl -L \
25 -s "/manifest" -t elem -n "remote" -v "" \
26 -i "/manifest/remote[last()]" -t attr -n "name" -v "ats" \
27 -i "/manifest/remote[last()]" -t attr -n "fetch" -v "$REMOTE_SOURCE" \
28 -u "/manifest/project[contains(@name, 'advancedtelematic')]/@remote" -v "ats" \
29 -d "/manifest/project[@path=\"$CURRENT_PROJECT\"]" \
30 "$MANIFEST_FILE"
31
32# hack: sed on `advancedtelematic/` names
33sed -i 's#name="advancedtelematic/#name="#g' "$MANIFEST_FILE"
34
35repo manifest
36
37repo forall -c 'git reset --hard ; git clean -fdx'
38
39repo sync -d --force-sync
40
41rm -f "$CURRENT_PROJECT"
42ln -s "$LOCAL_REPO" "$CURRENT_PROJECT"
43
44repo manifest -r