[go: up one dir, main page]

parity-wasm 0.12.0

WebAssembly binary format serialization/deserialization/interpreter
Documentation
dist: trusty
sudo: required

language: 
  - rust
  - cpp

addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
    packages:
      - gcc-6
      - g++-6
      - cmake

script:
  - export CC=/usr/bin/gcc-6
  - export CXX=/usr/bin/g++-6
  - cargo build --release --verbose
  - cargo test --release --verbose
  - cargo test --release --manifest-path=spec/Cargo.toml 
  
after_success: |
    cargo doc \
    && echo '<meta http-equiv=refresh content=0;url=parity_wasm/index.html>' > target/doc/index.html && \
    sudo pip install ghp-import && \
    ghp-import -n target/doc && \
    git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages