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
17 changes: 15 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
task:
name: stable x86_64-unknown-freebsd-14
freebsd_instance:
image_family: freebsd-14-2
image_family: freebsd-14-3
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh --default-toolchain stable -y --profile=minimal
Expand All @@ -17,7 +17,20 @@ task:
task:
name: stable x86_64-unknown-freebsd-15
freebsd_instance:
image_family: freebsd-15-0-snap
image_family: freebsd-15-0-amd64-ufs
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh --default-toolchain stable -y --profile=minimal
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
- cargo test --workspace --features=all-apis

task:
name: stable x86_64-unknown-freebsd-16
freebsd_instance:
image_family: freebsd-16-0-snap
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh --default-toolchain stable -y --profile=minimal
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
cargo update --package=quote --precise=1.0.41
cargo update --package=ryu --precise=1.0.20
cargo update --package=itoa --precise=1.0.15
cargo update --package=serde_json --precise=1.0.145
cargo update --package=log --precise=0.4.28

- run: >
rustup target add
Expand Down Expand Up @@ -288,6 +290,7 @@ jobs:
arm-linux-1.63,
macos-latest,
macos-15-intel,
macos-14,
windows,
musl,
]
Expand Down Expand Up @@ -493,6 +496,9 @@ jobs:
- build: macos-15-intel
os: macos-15-intel
rust: stable
- build: macos-14
os: macos-14
rust: stable
- build: windows
os: windows-latest
rust: nightly
Expand Down Expand Up @@ -585,6 +591,10 @@ jobs:
cargo update --package=rayon-core --precise=1.12.1
cargo update --package=windows-sys@0.61.2 --precise=0.60.2
cargo update --package=quote --precise=1.0.41
cargo update --package=ryu --precise=1.0.20
cargo update --package=itoa --precise=1.0.15
cargo update --package=serde_json --precise=1.0.145
cargo update --package=log --precise=0.4.28

- run: |
cargo test --verbose --features=all-apis --release --workspace -- --nocapture
Expand Down