Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 9ea8fc8

Browse files
authored
Merge pull request #262 from pohly/build-debug-removal
CI: remove sstate debug code
2 parents d839a0f + a896888 commit 9ea8fc8

2 files changed

Lines changed: 0 additions & 28 deletions

File tree

docker/build-project.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,6 @@ else
9696
_bitbake_targets="$BUILD_TARGET"
9797
fi
9898

99-
# Ensure that we have a local sstate signature for all tasks, even those which do not need
100-
# to run. This makes it possible to investigate signature changes in post-build.sh.
101-
bitbake -S none ${_bitbake_targets}
102-
10399
bitbake_build () {
104100
local targets="$@"
105101
if [ ! -z ${JOB_NAME+x} ]; then

docker/post-build.sh

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,6 @@ echo "REFKIT_VM_IMAGE_TYPES = \"\"" >> conf/auto.conf
3838
export BUILD_ID=${CI_BUILD_ID}
3939
export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE BUILD_ID"
4040

41-
# Our post-build configuration should not require rebuilding.
42-
_images=""
43-
for img in `grep REFKIT_CI_BUILD_TARGETS ${WORKSPACE}/refkit_ci_vars | perl -pe 's/.+="(.*)"/\1/g; s/[^ a-zA-Z0-9_-]//g'`; do
44-
_images="$_images ${img}"
45-
done
46-
bitbake -S none ${_images}
47-
48-
# Check linux-intel specifically in addition to images, because it did
49-
# rebuild at some point and even though bitbake-diffsigs should
50-
# recurse to it, that's not guaranteed to work.
51-
for target in intel-linux ${_images}; do
52-
if ! bitbake-diffsigs -t $target do_build; then
53-
echo "$target: nothing changed or bitbake-diffsigs failed"
54-
fi
55-
done
56-
5741
_esdks=""
5842
for esdk in `grep REFKIT_CI_ESDK_TEST_TARGETS ${WORKSPACE}/refkit_ci_vars | perl -pe 's/.+="(.*)"/\1/g; s/[^ a-zA-Z0-9_-]//g'`; do
5943
_esdks="$_esdks ${esdk}:do_testsdkext"
@@ -64,11 +48,3 @@ _tests=`grep REFKIT_CI_POSTBUILD_SELFTESTS ${WORKSPACE}/refkit_ci_vars | perl -p
6448
if [ -n "$_tests" ]; then
6549
oe-selftest --run-tests ${_tests}
6650
fi
67-
68-
# If something changed during the oe-selftest setup, we should (finally)
69-
# have two signatures to compare here.
70-
for target in linux-intel ${_images}; do
71-
if ! bitbake-diffsigs -t $target do_build; then
72-
echo "$target: nothing changed or bitbake-diffsigs failed"
73-
fi
74-
done

0 commit comments

Comments
 (0)