From e88729c67e902de7272667bf30d30c5bd745eac7 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Sat, 23 May 2026 18:39:22 -0400 Subject: [PATCH] [ci] Start avahi-daemon in sentinel builds (#8914) This fixes the mDNS test failures in the sentinel builds. --- .github/workflows/sentinel-build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sentinel-build.yml b/.github/workflows/sentinel-build.yml index 36ca6e7322..3059bdba75 100644 --- a/.github/workflows/sentinel-build.yml +++ b/.github/workflows/sentinel-build.yml @@ -54,7 +54,11 @@ jobs: with: image: ${{ matrix.container }} options: -v ${{ github.workspace }}:/work -w /work -e GITHUB_REF -e CI - run: ./gradlew build -PbuildServer -PskipJavaFormat ${{ matrix.build-options }} + # Start avahi-daemon and build + run: | + service dbus start + avahi-daemon -D + ./gradlew build -PbuildServer -PskipJavaFormat ${{ matrix.build-options }} - name: Check free disk space run: df . - uses: actions/upload-artifact@v7