Skip to content

Commit d717bb0

Browse files
committed
CI: add a dogfooding check
This adds a check wher the project's self-check (make check) is run in a buildbox container with builbo. Signed-off-by: Michael Adam <obnox@samba.org>
1 parent dea770f commit d717bb0

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,17 @@ jobs:
5656
pwd
5757
ls -l
5858
builbo -l c -o fedora -b -s "./autogen.sh && make"
59+
dogfood:
60+
name: dogfooding: run self-check in builbo
61+
runs-on: ubuntu-latest
62+
steps:
63+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
64+
- name: install builbo
65+
run: |
66+
sudo make install-cli
67+
- name: run self-check
68+
run: |
69+
builbo -l c -o fedora -d shellcheck,golang -b -s "make check"
70+
71+
5972

0 commit comments

Comments
 (0)