Files
loot-condition-interpreter/.travis.yml
T

44 lines
1.1 KiB
YAML
Raw Normal View History

2018-10-05 20:30:50 +01:00
language: rust
addons:
apt:
packages:
- p7zip-full
cache: cargo
install:
- rustup component add rustfmt-preview
- rustfmt --version
before_script:
2018-10-23 18:30:05 +01:00
- mkdir tests
- cd tests
2018-10-05 20:30:50 +01:00
- wget https://github.com/WrinklyNinja/testing-plugins/archive/1.4.1.tar.gz
- tar -xf 1.4.1.tar.gz
- mv testing-plugins-1.4.1 testing-plugins
- wget https://github.com/loot/loot-api/releases/download/0.13.8/loot_api-0.13.8-0-g47797cc_dev-win32.7z
- 7z x loot_api-0.13.8-0-g47797cc_dev-win32.7z
2018-10-23 18:30:05 +01:00
- mv loot_api-0.13.8-0-g47797cc_dev-win32 loot_api_win32
2018-10-05 20:30:50 +01:00
- wget https://github.com/loot/loot-api/releases/download/0.13.8/loot_api-0.13.8-0-g47797cc_dev-win64.7z
- 7z x loot_api-0.13.8-0-g47797cc_dev-win64.7z
2018-10-23 18:30:05 +01:00
- mv loot_api-0.13.8-0-g47797cc_dev-win64 loot_api_win64
- cd ..
2018-10-05 20:30:50 +01:00
script:
2018-10-07 22:13:48 +01:00
- cargo fmt --all -- --check
- cargo test --all --all-features
# Need to rebuild the FFI wrapper so that its binary is given a filename
# without a hash.
- cargo build --manifest-path ffi/Cargo.toml --features ffi-headers
- mkdir ffi/build
- cd ffi/build
- cmake ..
- make
- make test