Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
which -a kyua
- name: Configure
run: |
CFG_ARGS=""
CFG_ARGS="--enable-developer"
for i in ${{ join(matrix.sanitize, ' ') }}; do
CFG_ARGS="${CFG_ARGS} --enable-${i}"
done
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
- name: Configure
shell: freebsd {0}
run: |
CFG_ARGS=""
CFG_ARGS="--enable-developer"
for i in ${{ join(matrix.sanitize, ' ') }}; do
CFG_ARGS="${CFG_ARGS} --enable-${i}"
done
Expand Down
6 changes: 4 additions & 2 deletions admin/ci-build/02_distcheck.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#!/bin/sh
#
# Copyright (c) 2026 Enji Cooper.
#
# SPDX-License-Identifier: BSD-2-Clause

# Step 2: run `make distcheck`.
#
# `make distcheck` builds the tests, runs them, and subsequently performs a
# style check on the code.
#
# SPDX-License-Identifier: BSD-2-Clause

set -eux

Expand Down
Loading