fifth attempt at travis config

typo: it's --jobs=2, not -jobs=2.
This commit is contained in:
Scott Lamb 2018-08-07 16:01:43 -05:00
parent 01e8dab67f
commit f3127f563a

View File

@ -20,7 +20,7 @@ matrix:
- rust: nightly
cache: cargo
script:
- (git clone --depth 1 -b "release/3.4" https://github.com/FFmpeg/FFmpeg.git && cd FFmpeg && ./configure --enable-shared && make -jobs=2 && sudo make install --jobs=2 && sudo ldconfig)
- (git clone --depth 1 -b "release/3.4" https://github.com/FFmpeg/FFmpeg.git && cd FFmpeg && ./configure --enable-shared && make --jobs=2 && sudo make install --jobs=2 && sudo ldconfig)
- cargo build --verbose --all
- cargo test --verbose --all
- 'if [ $TRAVIS_RUST_VERSION = nightly ]; then cargo bench --verbose --all; fi'