Skip to content
Snippets Groups Projects

.gitlab-ci.yml: publish RAUC bundle to HawkBit

Merged Zygmunt Krynicki requested to merge hawkbit into kirkstone
1 file
+ 36
0
Compare changes
  • Side-by-side
  • Inline
.. SPDX-FileCopyrightText: Huawei Inc.
..
.. SPDX-License-Identifier: CC-BY-4.0
===============================
.publish-rauc-bundle-to-hawkbit
===============================
The `.publish-rauc-bundle-to-hawkbit` job uses `hawkbitctl` to publish a
pre-build bundle to a HawkBit instance. The bundle is uploaded as an _artifact_
to a new _software module_, which is then used to create a new _distribution
set_.
Usage Guide
===========
The `.publish-rauc-bundle-to-hawkbit` job should be paired with the
:doc:`build-rauc-bundle-job` using the `needs: ...` keyword, so that the bundle
file is transferred as an artifact between the two jobs, and no other artifacts
are needlessly copied.
The following variables should be set in the job definition:
- `CI_ONIRO_HAWKBIT_SWMOD_NAME` is the name of the software module to create.
- `CI_ONIRO_HAWKBIT_DS_NAME` is the name of the distribution set to create.
- `CI_ONIRO_RAUC_BUNDLE` is the name of the Yocto recipe responsible for the bundle.
- `MACHINE` is the Yocto machine variable.
Note that the job relies on the presence of two artifact files: the bundle
itself, which contains a timestamp-based version string, and the symbolic link
pointing to it. The job that builds the bundle handles this automatically but
custom jobs may need additional logic to preserve both files.
The job will run automatically for tags, scheduled pipelines and for merge
requests. Branch pipelines are excluded to avoid publishing extensive number of
artifacts.
Loading