Skip to content

Commit

Permalink
chore: release 0.4.0 (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
andoriyu authored Apr 1, 2023
1 parent 82c38d5 commit a6cdc8a
Show file tree
Hide file tree
Showing 31 changed files with 1,299 additions and 1,006 deletions.
45 changes: 33 additions & 12 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,38 @@
---
setup: &FREEBSD_SETUP
env:
HOME: /tmp # cargo needs it
RUST_BACKTRACE: full # Better info for debugging test failures.
setup_script:
- pkg install -y llvm
- fetch https://sh.rustup.rs -o rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain ${VERSION}

build: &BUILD_TEST
cargo_cache:
folder: $HOME/.cargo/registry
fingerprint_script: cat Cargo.lock || echo ""
build_script:
- env PATH="$HOME/.cargo/bin:$PATH" cargo build --all-features
test_script:
- mdconfig -a -s 96m -u1
- env PATH="$HOME/.cargo/bin:$PATH" cargo test --all-features

task:
name: FreeBSD 14
env:
VERSION: stable
freebsd_instance:
matrix:
image: freebsd-12-1-release-amd64
image_family: freebsd-14-0-snap
<< : *FREEBSD_SETUP
<< : *BUILD_TEST
before_cache_script: rm -rf $HOME/.cargo/registry/index

task:
name: FreeBSD 13
env:
CIRRUS_SHELL: /bin/sh
install_script: |
pkg install -y curl
curl https://sh.rustup.rs -sSf | sh -s -- -y
. $HOME/.cargo/env
cargo_cache:
folder: $HOME/.cargo/registry
build_script: env PATH="$HOME/.cargo/bin:$PATH" cargo build --all-features
test_script: mdconfig -a -s 96m -u1; env PATH="$HOME/.cargo/bin:$PATH" cargo test --all-features
VERSION: stable
freebsd_instance:
image: freebsd-13-1-release-amd64
<< : *FREEBSD_SETUP
<< : *BUILD_TEST
before_cache_script: rm -rf $HOME/.cargo/registry/index
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ test-results/
.vagrant
libfuckery
build.rs
.pre-commit-config.yaml
Loading

0 comments on commit a6cdc8a

Please sign in to comment.