Add workflow arguments for verbosity. Add missing ldap to full features. Superpose --all-features as backstop for unlisted features. Fix hardened_malloc requiring gcc Signed-off-by: Jason Volk <jason@zemos.net>
19 lines
310 B
YAML
19 lines
310 B
YAML
name: Build
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
install:
|
|
name: Install
|
|
uses: ./.github/workflows/bake.yml
|
|
with:
|
|
bake_targets: '["install"]'
|
|
|
|
complement:
|
|
name: Complement Testee
|
|
uses: ./.github/workflows/bake.yml
|
|
needs: [install]
|
|
with:
|
|
bake_targets: '["complement-testee"]'
|