Skip to content

Commit

Permalink
Merge pull request #489 from zeenix/large-runners
Browse files Browse the repository at this point in the history
👷 CI: Use large runners for faster actions
  • Loading branch information
zeenix authored Oct 7, 2023
2 parents acc34f5 + 7e486f5 commit 3ebf075
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-large
permissions:
contents: write
steps:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
MSRV:
runs-on: ubuntu-latest
runs-on: ubuntu-large
env:
RUSTFLAGS: -D warnings
MSRV: 1.66.0
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion zbus/src/fdo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3ebf075

Please sign in to comment.