def ci_auth_make_bear(c):
# Needed for clang-tidy -line-filter vs project structure shenanigans
with c.cd('pdns'):
- c.run('bear --append make -j8 -k V=1 -C ..')
+ c.run('bear --append -- make -j8 -k V=1 -C ..')
@task
def ci_rec_make(c):
@task
def ci_rec_make_bear(c):
# Assumed to be running under ./pdns/recursordist/
- c.run('bear --append make -j8 -k V=1')
+ c.run('bear --append -- make -j8 -k V=1')
@task
def ci_dnsdist_make(c):
@task
def ci_dnsdist_make_bear(c):
# Assumed to be running under ./pdns/dnsdistdist/
- c.run('bear --append make -j4 -k V=1')
+ c.run('bear --append -- make -j4 -k V=1')
@task
def ci_auth_install_remotebackend_test_deps(c):