Skip to content
Snippets Groups Projects

Enable ABI checker

Merged Pavel Zhukov requested to merge landgraf/oniro:abi_checker into kirkstone
Compare and
3 files
+ 30
3
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -162,6 +162,13 @@
| sed -e 's/^CI_ONIRO_BB_LOCAL_CONF_plus_equals_//g' -e 's/"/\\"/g' -e 's/=/ += "/g' -e 's/$/"/g' \
| sort \
| tee -a conf/local.conf )
- |
( set +o pipefail;
env \
| grep -E '^CI_ONIRO_BB_BBLAYERS_CONF_plus_equals_[A-Z_0-9]+=' \
| sed -e 's/^CI_ONIRO_BB_BBLAYERS_CONF_plus_equals_//g' -e 's/"/\\"/g' -e 's/=/ += "/g' -e 's/$/"/g' \
| sort \
| tee -a conf/bblayers.conf )
# Sanity check: disallow using public build cache with a specific setting
# in local.conf. The list of settings may grow over time.
@@ -407,6 +414,16 @@
.build:
extends: .build-recipe
.check-abi:
variables:
CI_ONIRO_BB_LOCAL_CONF_plus_equals_INHERIT: abicheck
CI_ONIRO_MANIFEST_NAME: manifests/ci.xml
CI_ONIRO_BB_BBLAYERS_CONF_plus_equals_BBLAYERS: "../meta-binaryaudit"
after_script:
- eval "$(bitbake -e | grep ^TMPDIR= | sed -e 's/^TMPDIR/BITBAKE_TMPDIR/g')"
- test -f "$BITBAKE_TMPDIR"/tmp/buildhistory/packages && tar -cJvf "$CI_PROJECT_DIR"/artifacts/abicheck.tar.xz "$BITBAKE_TMPDIR"/tmp/buildhistory/packages/*/*/binaryaudit ## TODO: Uniqid into file
- !reference [.workspace, after_script]
# This job is documented in docs/ci/hidden-jobs/build-docs.rst
.build-docs:
interruptible: true
Loading