mirror of
https://github.com/bspeice/aeron-rs
synced 2024-12-21 21:38:09 -05:00
Attempt to remove sh.exe
from PATH
This commit is contained in:
parent
56fc28dc47
commit
437e3f9d05
@ -14,8 +14,9 @@ before_script:
|
|||||||
- rustup update
|
- rustup update
|
||||||
- rustup component add clippy
|
- rustup component add clippy
|
||||||
- rustup component add rustfmt
|
- rustup component add rustfmt
|
||||||
- 'echo $PATH'
|
# CMake doesn't like `sh.exe` being available on Windows,
|
||||||
- 'which sh.exe'
|
# and since we don't use it elsewhere, just remove from PATH
|
||||||
|
- export PATH="${PATH/:\/bin/}"
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo clippy --all
|
- cargo clippy --all
|
||||||
|
@ -99,6 +99,9 @@ pub fn main() {
|
|||||||
.whitelist_type("aeron_.*")
|
.whitelist_type("aeron_.*")
|
||||||
.whitelist_var("AERON_.*")
|
.whitelist_var("AERON_.*")
|
||||||
.constified_enum_module("aeron_.*_enum")
|
.constified_enum_module("aeron_.*_enum")
|
||||||
|
// Some padding structures use arrays > 120 elements,
|
||||||
|
// so we can't derive Debug implementations
|
||||||
|
.derive_debug(false)
|
||||||
.generate()
|
.generate()
|
||||||
.expect("Unable to generate aeron_driver bindings");
|
.expect("Unable to generate aeron_driver bindings");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user