Skip to content

Commit

Permalink
Revert "👷 CI: Use large runners for faster actions"
Browse files Browse the repository at this point in the history
This reverts commit 7e486f5.

The cost is very high. Let's just stick to the default runners for now.
  • Loading branch information
zeenix committed Oct 7, 2023
1 parent 3ebf075 commit 11249be
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-large
runs-on: ubuntu-latest
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-large
runs-on: ubuntu-latest
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-large
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
MSRV: 1.66.0
Expand All @@ -31,7 +31,7 @@ jobs:
# cargo check --all-features

lint:
runs-on: ubuntu-large
runs-on: ubuntu-latest
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-large
runs-on: ubuntu-latest
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-large
runs-on: windows-latest
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-large
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
Expand All @@ -220,7 +220,7 @@ jobs:
cargo check --target x86_64-unknown-netbsd
zvariant_fuzz:
runs-on: ubuntu-large
runs-on: ubuntu-latest
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-large
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: -D warnings
steps:
Expand Down

0 comments on commit 11249be

Please sign in to comment.