diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bcb4634e7..cff10e56d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,7 +11,7 @@ on: jobs: book: - runs-on: ubuntu-latest + runs-on: ubuntu-large permissions: contents: write # To push a branch pull-requests: write # To create a PR from that branch diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8bd957ecc..7bf1f559c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: release: - runs-on: ubuntu-latest + runs-on: ubuntu-large permissions: contents: write steps: diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 044de7295..b2ef0b951 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -8,7 +8,7 @@ on: jobs: MSRV: - runs-on: ubuntu-latest + runs-on: ubuntu-large env: RUSTFLAGS: -D warnings MSRV: 1.66.0 @@ -31,7 +31,7 @@ jobs: # cargo check --all-features lint: - runs-on: ubuntu-latest + runs-on: ubuntu-large env: RUSTFLAGS: -D warnings RUST_BACKTRACE: full @@ -49,7 +49,7 @@ jobs: run: cargo clippy -- -D warnings -D clippy::large_futures linux_test: - runs-on: ubuntu-latest + runs-on: ubuntu-large needs: lint env: RUSTFLAGS: -D warnings @@ -82,7 +82,7 @@ jobs: dbus-run-session --config-file /tmp/dbus-session.conf -- cargo test --verbose --doc --no-default-features connection::Connection::executor windows_test: - runs-on: windows-latest + runs-on: windows-large needs: lint env: RUSTFLAGS: -D warnings @@ -203,7 +203,7 @@ jobs: cargo test --features zbus/windows-gdbus cross_check: - runs-on: ubuntu-latest + runs-on: ubuntu-large env: RUSTFLAGS: -D warnings steps: @@ -220,7 +220,7 @@ jobs: cargo check --target x86_64-unknown-netbsd zvariant_fuzz: - runs-on: ubuntu-latest + runs-on: ubuntu-large env: RUSTFLAGS: -D warnings RUST_BACKTRACE: full @@ -237,7 +237,7 @@ jobs: cargo fuzz run --fuzz-dir zvariant/fuzz gvariant -- -max_total_time=30 -max_len=100M doc_build: - runs-on: ubuntu-latest + runs-on: ubuntu-large env: RUSTDOCFLAGS: -D warnings steps: diff --git a/zbus/src/fdo.rs b/zbus/src/fdo.rs index 7f3d4c03f..45907cd57 100644 --- a/zbus/src/fdo.rs +++ b/zbus/src/fdo.rs @@ -112,7 +112,7 @@ assert_impl_all!(PropertiesProxy<'_>: Send, Sync, Unpin); /// Server-side implementation for the `org.freedesktop.DBus.Properties` interface. /// This interface is implemented automatically for any object registered to the -/// [ObjectServer](crate::ObjectServer). +/// [ObjectServer]. pub struct Properties; assert_impl_all!(Properties: Send, Sync, Unpin);