Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: switch away from buildjet runners temporarily #2717

Merged
merged 4 commits into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:

jobs:
build:
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
steps:
- uses: rui314/setup-mold@v1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cargo-features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

jobs:
cargo-features:
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
steps:
- uses: taiki-e/install-action@cargo-hack

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ env:
jobs:
build-test-artifacts-postgres:
name: Build test artifacts (postgres)
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
steps:
- uses: rui314/setup-mold@v1

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

build-test-artifacts-sqlite:
name: Build test artifacts (sqlite)
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
steps:
- uses: rui314/setup-mold@v1

Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

build-test-bins:
name: Build test binaries
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-latest
steps:
- uses: rui314/setup-mold@v1

Expand Down
4 changes: 2 additions & 2 deletions sequencer/src/network/cdn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl<T: SignatureKey> SignatureScheme for WrappedSignatureKey<T> {
};

todo_by!(
"2025-3-4",
"2025-4-4",
"Only accept the namespaced message once everyone has upgraded"
);
public_key.0.validate(&signature, message)
Expand Down Expand Up @@ -112,7 +112,7 @@ impl<TYPES: NodeType> RunDef for ProductionDef<TYPES> {
}

todo_by!(
"2025-3-4",
"2025-4-4",
"Remove this, switching to TCP+TLS singularly when everyone has updated"
);
/// The user definition for the Push CDN.
Expand Down
Loading