Skip to content

Commit ee0845b

Browse files
committed
fix(ci): mkdir -p /run/dbus before starting dbus-daemon in e2e-install
The dbus-daemon --system --fork was failing with 'Failed to bind socket /app/var/run/dbus/system_bus_socket: No such file or directory' because the socket dir doesn't exist in the gnome-49 container. Create /run/dbus before starting the daemon. Assisted-by: Claude Sonnet 4.6 via OpenCode
1 parent f2efac3 commit ee0845b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,6 +1064,7 @@ jobs:
10641064
if: steps.arch-check.outputs.skip != 'true'
10651065
run: |
10661066
mkdir -p /var/lib/dbus && dbus-uuidgen | tee /var/lib/dbus/machine-id
1067+
mkdir -p /run/dbus
10671068
dbus-daemon --system --fork
10681069
10691070
- name: Install ${{ matrix.app }}

0 commit comments

Comments
 (0)