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/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: [ main ]

env:
RUST_NIGHTLY_TOOLCHAIN: nightly-2025-02-07
RUST_NIGHTLY_TOOLCHAIN: nightly-2025-02-22
RUSTFLAGS: -Clinker=/usr/bin/clang -Clink-arg=--ld-path=/usr/local/bin/mold -Ctarget-cpu=native -Zshare-generics=y -Zthreads=0

jobs:
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: CI

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]
merge_group:
branches: [ main ]
branches: [main]

jobs:
fmt:
Expand Down Expand Up @@ -100,7 +100,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, macos-14, windows-latest] # macos-14 is for Apple Silicon
os:
- ubuntu-latest
# commenting these out because getting a weird error with ring that does not occur when building locally on MacBook Pro M2
# - macos-latest
# - macos-14
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -117,4 +122,4 @@ jobs:
with:
cache-on-failure: "true"
- name: Run tests
run: cargo test --all-features
run: cargo test --all-features
Loading