Skip to content

Execute respdiff jobs out-of-order

Michal Nowak requested to merge mnowak/respdiff-job-dependency-fix into main

Commit 2ececf2c dropped dependency of "respdiff" and "respdiff-third-party" jobs on "tarball-create" job because these jobs don't need to depend on in (e.g., for its artifacts). This, however, caused that respdiff jobs weren't started out-of-order and artifacts from the "Build" stage jobs plus "unit:gcc:buster:amd64" job were downloaded to project directory and caused problems with compilation:

/usr/bin/ld: /usr/bin/ld: DWARF error: can't find .debug_ranges section.
../../isc/libisc.a(netmgr.o): in function `isc__netmgr_destroy':
netmgr.c:(.text+0x113b): undefined reference to `uv_sleep'

Originally, the dependency on "tarball-create" has been added in 04f8b65a to indicate that respdiff "is meant to operate on two different BIND versions". It seems that the intent didn't work out, and we better make it obvious that respdiff jobs don't depend on any other job and should be run out-of-order.

Link: !3078 (comment 113053)

Merge request reports