Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
publish:
name: Publish to crates.io
needs: tests
runs-on: ubuntu-latest-xlarge
runs-on: ubuntu-latest-8-cores
environment: publish

steps:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Setup Rust environment and install nextest
run: |
source ~/.cargo/env

# Install nextest if not already present
if ! command -v cargo-nextest &> /dev/null; then
cargo install cargo-nextest --locked
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

test-weak:
name: Weak Mode Integration Tests (Linux)
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest-8-cores, macos-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -188,7 +188,7 @@ jobs:

fmt:
name: Format
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores

steps:
- uses: actions/checkout@v4
Expand All @@ -209,7 +209,7 @@ jobs:

udeps:
name: Unused dependency check
runs-on: ubuntu-latest
runs-on: ubuntu-latest-8-cores

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -250,4 +250,4 @@ jobs:
if grep -qi "unused" udeps_output.txt; then
echo "Unused dependencies detected"
exit 1
fi
fi
Loading