summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ci/Dockerfile.checkout9
-rwxr-xr-xscripts/ci/checkout-oe.sh47
-rwxr-xr-xscripts/envsetup.sh2
3 files changed, 57 insertions, 1 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
diff --git a/scripts/ci/checkout-oe.sh b/scripts/ci/checkout-oe.sh
new file mode 100755
index 0000000..8744b2f
--- /dev/null
+++ b/scripts/ci/checkout-oe.sh
@@ -0,0 +1,47 @@
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:
23# - add a new "ats" remote that points to "$REMOTE_SOURCE"
24# - change projects that contain "advancedtelematic" to use the ats remote
25# - remove the current project from the manifest
26MANIFEST_FILE=".repo/manifests/${MANIFEST}.xml"
27xmlstarlet ed --omit-decl -L \
28 -s "/manifest" -t elem -n "remote" -v "" \
29 -i "/manifest/remote[last()]" -t attr -n "name" -v "ats" \
30 -i "/manifest/remote[last()]" -t attr -n "fetch" -v "$REMOTE_SOURCE" \
31 -i "/manifest/project[contains(@name, 'advancedtelematic')]" -t attr -n "remote" -v "ats" \
32 -d "/manifest/project[@path=\"$CURRENT_PROJECT\"]" \
33 "$MANIFEST_FILE"
34
35# hack: sed on `advancedtelematic/` names, to remove this unwanted prefix
36sed -i 's#name="advancedtelematic/#name="#g' "$MANIFEST_FILE"
37
38repo manifest
39
40repo forall -c 'git reset --hard ; git clean -fdx'
41
42repo sync -d --force-sync
43
44rm -f "$CURRENT_PROJECT"
45ln -s "$LOCAL_REPO" "$CURRENT_PROJECT"
46
47repo manifest -r
diff --git a/scripts/envsetup.sh b/scripts/envsetup.sh
index 6103cf6..5827bc2 100755
--- a/scripts/envsetup.sh
+++ b/scripts/envsetup.sh
@@ -21,7 +21,7 @@ if [[ $SOURCED -ne 1 ]]; then
21 exit 1 21 exit 1
22fi 22fi
23 23
24METADIR="${SOURCEDIR}/../.." 24METADIR=${METADIR:-${SOURCEDIR}/../..}
25 25
26if [[ ! -f "${BUILDDIR}/conf/local.conf" ]]; then 26if [[ ! -f "${BUILDDIR}/conf/local.conf" ]]; then
27 source "$METADIR/poky/oe-init-build-env" "$BUILDDIR" 27 source "$METADIR/poky/oe-init-build-env" "$BUILDDIR"