Skip to content

Commit ebc7459

Browse files
committed
Install dbus for Linux.
1 parent 48fa646 commit ebc7459

File tree

1 file changed

+28
-24
lines changed

1 file changed

+28
-24
lines changed

.github/workflows/publish.yml

Lines changed: 28 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,30 @@ jobs:
2222
arch: x86_64
2323
distro: linux
2424
variant: none
25-
- os: ubuntu-latest
26-
binary_target: x86_64-unknown-linux-musl
27-
platform: unknown-linux-musl
28-
arch: x86_64
29-
distro: linux
30-
variant: musl
31-
- os: windows-latest
32-
binary_target: x86_64-pc-windows-msvc
33-
platform: pc-windows-msvc
34-
arch: x86_64
35-
distro: windows
36-
variant: none
37-
- os: macos-latest
38-
binary_target: x86_64-apple-darwin
39-
platform: apple-darwin
40-
arch: x86_64
41-
distro: macos
42-
variant: none
43-
- os: macos-latest
44-
binary_target: aarch64-apple-darwin
45-
platform: apple-darwin
46-
arch: aarch64
47-
distro: macos
48-
variant: none
25+
# - os: ubuntu-latest
26+
# binary_target: x86_64-unknown-linux-musl
27+
# platform: unknown-linux-musl
28+
# arch: x86_64
29+
# distro: linux
30+
# variant: musl
31+
# - os: windows-latest
32+
# binary_target: x86_64-pc-windows-msvc
33+
# platform: pc-windows-msvc
34+
# arch: x86_64
35+
# distro: windows
36+
# variant: none
37+
# - os: macos-latest
38+
# binary_target: x86_64-apple-darwin
39+
# platform: apple-darwin
40+
# arch: x86_64
41+
# distro: macos
42+
# variant: none
43+
# - os: macos-latest
44+
# binary_target: aarch64-apple-darwin
45+
# platform: apple-darwin
46+
# arch: aarch64
47+
# distro: macos
48+
# variant: none
4949
steps:
5050
- uses: actions/checkout@v4
5151
- name: ⚡ Cache
@@ -57,6 +57,10 @@ jobs:
5757
target
5858
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
5959

60+
- name: Install dbus
61+
if: matrix.distro == 'linux'
62+
run: sudo apt-get install libdbus-1-dev
63+
6064
# Prepare
6165
- name: Set environment variables
6266
shell: bash

0 commit comments

Comments
 (0)