We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1aefe4 commit eb12792Copy full SHA for eb12792
1 file changed
.github/workflows/rpc-tests.yml
@@ -32,8 +32,15 @@ jobs:
32
- uses: actions/checkout@v4
33
- uses: stellar/actions/rust-cache@main
34
- run: rustup update
35
- - run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev gnome-keyring
+ - run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev gnome-keyring dbus dbus-x11
36
if: runner.os == 'Linux'
37
+ - name: Start D-Bus and GNOME Keyring
38
+ if: runner.os == 'Linux'
39
+ run: |
40
+ export $(dbus-launch)
41
+ eval $(gnome-keyring-daemon --start --components=secrets)
42
+ export DBUS_SESSION_BUS_ADDRESS
43
+ echo "DBUS_SESSION_BUS_ADDRESS=$DBUS_SESSION_BUS_ADDRESS" >> $GITHUB_ENV
44
- run: cargo build
45
- run: rustup target add wasm32-unknown-unknown
46
- run: make build-test-wasms
0 commit comments