Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
feat: remove rust code
Browse files Browse the repository at this point in the history
Closes #1258
  • Loading branch information
bbangert committed Jun 6, 2018
1 parent f9a8f6f commit 7ab7a14
Show file tree
Hide file tree
Showing 34 changed files with 10 additions and 8,851 deletions.
22 changes: 3 additions & 19 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: python
cache:
directories:
- $HOME/.cargo
- autopush_rs/target
- $HOME/.cache/pip
sudo: required
dist: trusty
Expand All @@ -13,29 +11,15 @@ matrix:
env: TOXENV=py27 DDB=true CODECOV=true
- python: pypy
env: TOXENV=pypy DDB=true CODECOV=true
- env: TOXENV=flake8 WITH_RUST=false
- env: TOXENV=flake8
- python: 3.6
env: TOXENV=py36-mypy WITH_RUST=false
env: TOXENV=py36-mypy
allow_failures:
- env: TOXENV=py36-mypy WITH_RUST=false
- env: TOXENV=py36-mypy

install:
- ${DDB:+make ddb}
- pip install tox ${CODECOV:+codecov}
- |
if [ ${WITH_RUST:-true} != "false" ]; then
curl https://sh.rustup.rs | sh -s -- -y || travis_terminate 1;
export PATH=$PATH:$HOME/.cargo/bin
# Build here instead of within tox's pip install -e. It hides the output
# which can kill the job on slower travis runs
if [ ${WITH_RUST} == "release" ]; then
cargo build --manifest-path autopush_rs/Cargo.toml --release || \
travis_terminate 1
else
cargo build --manifest-path autopush_rs/Cargo.toml || \
travis_terminate 1
fi
fi
script:
- tox -v -- ${CODECOV:+--with-coverage --cover-xml --cover-package=autopush}
after_success:
Expand Down
Loading

0 comments on commit 7ab7a14

Please sign in to comment.