diff options
| author | Laurent Bonnans <laurent.bonnans@here.com> | 2019-07-04 15:35:44 +0200 |
|---|---|---|
| committer | Laurent Bonnans <laurent.bonnans@here.com> | 2019-07-16 16:25:55 +0200 |
| commit | 9eebc8d15a297d68fc35dd4d77fcb945d2f395b2 (patch) | |
| tree | 3539b2bdf61192e63c498b5c0bebce578198005a /scripts/ci/checkout-oe.sh | |
| parent | 5a23aa71c2bd5cfe23207553d04b54c5bdca49b4 (diff) | |
| download | meta-updater-9eebc8d15a297d68fc35dd4d77fcb945d2f395b2.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/checkout-oe.sh')
| -rwxr-xr-x | scripts/ci/checkout-oe.sh | 47 |
1 files changed, 47 insertions, 0 deletions
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 | |||
| 3 | set -euo pipefail | ||
| 4 | |||
| 5 | set -x | ||
| 6 | |||
| 7 | REMOTE_SOURCE=${REMOTE_SOURCE:-https://github.com/advancedtelematic} | ||
| 8 | MANIFEST=${MANIFEST:-master} | ||
| 9 | CURRENT_PROJECT=${CURRENT_PROJECT:-meta-updater} | ||
| 10 | |||
| 11 | #CURRENT_REV=$(git rev-parse HEAD) | ||
| 12 | LOCAL_REPO=$PWD | ||
| 13 | |||
| 14 | mkdir -p updater-repo | ||
| 15 | |||
| 16 | cd updater-repo | ||
| 17 | |||
| 18 | repo init -m "${MANIFEST}.xml" -u "$REMOTE_SOURCE/updater-repo" | ||
| 19 | |||
| 20 | git -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 | ||
| 26 | MANIFEST_FILE=".repo/manifests/${MANIFEST}.xml" | ||
| 27 | xmlstarlet 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 | ||
| 36 | sed -i 's#name="advancedtelematic/#name="#g' "$MANIFEST_FILE" | ||
| 37 | |||
| 38 | repo manifest | ||
| 39 | |||
| 40 | repo forall -c 'git reset --hard ; git clean -fdx' | ||
| 41 | |||
| 42 | repo sync -d --force-sync | ||
| 43 | |||
| 44 | rm -f "$CURRENT_PROJECT" | ||
| 45 | ln -s "$LOCAL_REPO" "$CURRENT_PROJECT" | ||
| 46 | |||
| 47 | repo manifest -r | ||
