Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#112] FreeBSD support #131

Merged
merged 3 commits into from
Jul 20, 2019
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
18 changes: 18 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
freebsd_instance:
image: freebsd-12-0-release-amd64

freebsd_task:
name: $TOOLCHAIN x86_64-unknown-freebsd
env:
matrix:
- TOOLCHAIN: stable
- TOOLCHAIN: beta
- TOOLCHAIN: nightly
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --default-toolchain $TOOLCHAIN
build_script:
- $HOME/.cargo/bin/rustup run $TOOLCHAIN cargo build --verbose
test_script:
- $HOME/.cargo/bin/rustup run $TOOLCHAIN cargo test --verbose
461 changes: 260 additions & 201 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ log = "0.4"
lru = "0.1.15"
regex = "1"
tempfile = "3.0.3"
proc-maps = "0.1"
proc-maps = "0.1.6"
memmap = "0.7.0"
cpp_demangle = "0.2.12"
rand = "0.6"
Expand Down
Loading