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