Skip to content

Commit

Permalink
fixup! dnsdist: Add meson-based builds to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rgacogne committed Oct 15, 2024
1 parent b652a7d commit 6e7bff5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,13 +813,13 @@ def ci_rec_make_bear(c):
def ci_dnsdist_make(c):
c.run(f'make -j{get_build_concurrency(4)} -k V=1')

def ci_dnsdist_run_ninja():
def ci_dnsdist_run_ninja(c):
c.run(f'. {repo_home}/.venv/bin/activate && ninja -j{get_build_concurrency()} --verbose')

@task
def ci_dnsdist_make_bear(c, builder):
if builder == 'meson':
return ci_dnsdist_run_ninja()
return ci_dnsdist_run_ninja(c)

# Assumed to be running under ./pdns/dnsdistdist/
c.run(f'bear --append -- make -j{get_build_concurrency(4)} -k V=1')
Expand Down

0 comments on commit 6e7bff5

Please sign in to comment.