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-09 15:15:13 +0200 |
commit | 53aea9033ea5b684bcfa5bbece54a985df3223bb (patch) | |
tree | d7a2e6a3602c7b271ef2f6bb6a2c0e3efdb96ca2 /scripts/ci/oe-selftest.sh | |
parent | 37201eba4e17aea092a242b793424135cba3c8b8 (diff) | |
download | meta-updater-ci/gitlab-core-image-minimal.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/oe-selftest.sh')
-rwxr-xr-x | scripts/ci/oe-selftest.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/ci/oe-selftest.sh b/scripts/ci/oe-selftest.sh index 3124cce..5400388 100755 --- a/scripts/ci/oe-selftest.sh +++ b/scripts/ci/oe-selftest.sh | |||
@@ -9,10 +9,18 @@ TEST_MACHINE=${TEST_MACHINE:-qemux86-64} | |||
9 | TEST_BUILD_DIR=${TEST_BUILD_DIR:-build} | 9 | TEST_BUILD_DIR=${TEST_BUILD_DIR:-build} |
10 | TEST_REPO_DIR=${TEST_REPO_DIR:-updater-repo} | 10 | TEST_REPO_DIR=${TEST_REPO_DIR:-updater-repo} |
11 | 11 | ||
12 | OEST_ARGS=() | ||
13 | for v in "$@"; do | ||
14 | OEST_ARGS+=("-r" "$v") | ||
15 | done | ||
16 | |||
12 | ( | 17 | ( |
13 | set +euo pipefail | 18 | set +euo pipefail |
14 | set +x | 19 | set +x |
20 | METADIR=$(realpath "$TEST_REPO_DIR") | ||
21 | export METADIR | ||
15 | . "${TEST_REPO_DIR}/meta-updater/scripts/envsetup.sh" "${TEST_MACHINE}" "${TEST_BUILD_DIR}" | 22 | . "${TEST_REPO_DIR}/meta-updater/scripts/envsetup.sh" "${TEST_MACHINE}" "${TEST_BUILD_DIR}" |
16 | 23 | ||
17 | oe-selftest -r updater | 24 | set -x |
25 | oe-selftest "${OEST_ARGS[@]}" | ||
18 | ) | 26 | ) |