e14e5c2af1
A new command ./y.rs bench is introduced for benchmarking. This change allows skipping hyperfine installation in ./y.rs prepare and thus avoids writing to ~/.cargo/bin.
17 lines
414 B
YAML
17 lines
414 B
YAML
task:
|
|
name: freebsd
|
|
freebsd_instance:
|
|
image: freebsd-12-1-release-amd64
|
|
setup_rust_script:
|
|
- pkg install -y curl git bash
|
|
- curl https://sh.rustup.rs -sSf --output rustup.sh
|
|
- sh rustup.sh --default-toolchain none -y --profile=minimal
|
|
target_cache:
|
|
folder: target
|
|
prepare_script:
|
|
- . $HOME/.cargo/env
|
|
- ./y.rs prepare
|
|
test_script:
|
|
- . $HOME/.cargo/env
|
|
- ./y.rs test
|