Skip to content

Commit

Permalink
👷 CI: Use large runners for faster actions
Browse files Browse the repository at this point in the history
  • Loading branch information
zeenix committed Oct 7, 2023
1 parent 3f5f52c commit 7e486f5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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

0 comments on commit 7e486f5

Please sign in to comment.