summaryrefslogtreecommitdiffstats
path: root/scripts/ci/checkout-oe.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci/checkout-oe.sh')
-rwxr-xr-xscripts/ci/checkout-oe.sh73
1 files changed, 73 insertions, 0 deletions
diff --git a/scripts/ci/checkout-oe.sh b/scripts/ci/checkout-oe.sh
new file mode 100755
index 0000000..a99f235
--- /dev/null
+++ b/scripts/ci/checkout-oe.sh
@@ -0,0 +1,73 @@
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:-}
10
11# list of projects to pin to one version in the format:
12# "project:rev;project2:rev2..."
13PIN_LIST=${PIN_LIST:-}
14
15#CURRENT_REV=$(git rev-parse HEAD)
16LOCAL_REPO=$PWD
17
18mkdir -p updater-repo
19
20cd updater-repo
21
22repo init -m "${MANIFEST}.xml" -u "$REMOTE_SOURCE/updater-repo"
23
24git -C .repo/manifests reset --hard
25
26# patch manifest:
27# - add a new "ats" remote that points to "$REMOTE_SOURCE"
28# - change projects that contain "advancedtelematic" to use the ats remote
29MANIFEST_FILE=".repo/manifests/${MANIFEST}.xml"
30xmlstarlet ed --omit-decl -L \
31 -s "/manifest" -t elem -n "remote" -v "" \
32 -i "/manifest/remote[last()]" -t attr -n "name" -v "ats" \
33 -i "/manifest/remote[last()]" -t attr -n "fetch" -v "$REMOTE_SOURCE" \
34 -d "/manifest/project[contains(@name, 'advancedtelematic')]/@remote" \
35 -i "/manifest/project[contains(@name, 'advancedtelematic')]" -t attr -n "remote" -v "ats" \
36 "$MANIFEST_FILE"
37
38# hack: sed on `advancedtelematic/` names, to remove this unwanted prefix
39sed -i 's#name="advancedtelematic/#name="#g' "$MANIFEST_FILE"
40
41# pin projects from the list
42(
43IFS=";"
44for pin in $PIN_LIST; do
45 IFS=":"
46 read -r project rev <<< "$pin"
47 xmlstarlet ed --omit-decl -L \
48 -i "/manifest/project[@name=\"$project\"]/@revision" -t attr -n "revision" -v "$rev" \
49 -i "/manifest/project[@name=\"$project\"]" -t attr -n "revision" -v "$rev" \
50 "$MANIFEST_FILE"
51 IFS=";"
52done
53)
54
55# Remove the current project from the manifest if we have it checked out
56if [ -n "$CURRENT_PROJECT" ]; then
57 xmlstarlet ed --omit-decl -L \
58 -d "/manifest/project[@name=\"$CURRENT_PROJECT\"]" \
59 "$MANIFEST_FILE"
60fi
61
62repo manifest
63
64repo forall -c 'git reset --hard ; git clean -fdx'
65
66repo sync -d --force-sync
67
68if [ -n "$CURRENT_PROJECT" ]; then
69 rm -f "$CURRENT_PROJECT"
70 ln -s "$LOCAL_REPO" "$CURRENT_PROJECT"
71fi
72
73repo manifest -r