Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
fmt:
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
Expand All @@ -23,7 +23,7 @@ jobs:
working-directory: pgdog
run: cargo clippy
build:
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
Expand All @@ -41,14 +41,14 @@ jobs:
- name: Check release
run: cargo check --release
tests:
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: useblacksmith/rust-cache@v3
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "v1" # Change this when updating tooling
- name: Setup PostgreSQL
Expand All @@ -71,14 +71,14 @@ jobs:
- name: Run documentation tests
run: cargo test --doc
integration:
runs-on: blacksmith-8vcpu-ubuntu-2404
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: useblacksmith/rust-cache@v3
- uses: Swatinem/rust-cache@v2
with:
prefix-key: release-1
- name: Setup dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
include:
- platform: linux/amd64
runner: blacksmith-4vcpu-ubuntu-2404
runner: ubuntu-24.04
- platform: linux/arm64
runner: ubuntu-24.04-arm
permissions:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
push-to-registry: true

merge:
runs-on: blacksmith-4vcpu-ubuntu-2404
runs-on: ubuntu-24.04
needs:
- build
permissions:
Expand Down
Loading