Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Part 8/N] Interledger Stream: Futures 0.3 Transition #601

Merged
merged 9 commits into from
Jan 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 30 additions & 29 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ jobs:
cargo clippy --all-targets --all-features -- -D warnings
- run:
name: Audit Dependencies
command: cargo audit
# Disable:
# 1. lazy_static advisory: https://github.com/interledger-rs/interledger-rs/issues/588
# 2. http/hyper advisory: outdated http due to yup-oauth2 3.1.1, tungstenite 0.9.2
command: cargo audit --ignore RUSTSEC-2019-0033 --ignore RUSTSEC-2019-0034 --ignore RUSTSEC-2019-0031

test-md:
docker:
- image: circleci/rust
Expand All @@ -57,37 +61,34 @@ jobs:
steps:
- checkout
- run:
name: Disabled
command: echo "temporarily disabled"
# - run:
# name: Install Dependencies
# command: |
# # install system dependeicies
# sudo apt-get update
# sudo apt-get install -y redis-server redis-tools lsof libssl-dev
name: Install Dependencies
command: |
# install system dependeicies
sudo apt-get update
sudo apt-get install -y redis-server redis-tools lsof libssl-dev

# # install nvm
# curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
# export NVM_DIR="/home/circleci/.nvm"
# source $NVM_DIR/nvm.sh
# nvm install "v11.15.0"
# install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
export NVM_DIR="/home/circleci/.nvm"
source $NVM_DIR/nvm.sh
nvm install "v11.15.0"

# # install yarn & components (ganache-cli ilp-settlement-xrp conventional-changelog-cli)
# curl -o- -L https://yarnpkg.com/install.sh | bash
# export PATH="/home/circleci/.yarn/bin:/home/circleci/.config/yarn/global/node_modules/.bin:$PATH"
# yarn global add ganache-cli ilp-settlement-xrp conventional-changelog-cli
# install yarn & components (ganache-cli ilp-settlement-xrp conventional-changelog-cli)
curl -o- -L https://yarnpkg.com/install.sh | bash
export PATH="/home/circleci/.yarn/bin:/home/circleci/.config/yarn/global/node_modules/.bin:$PATH"
yarn global add ganache-cli ilp-settlement-xrp conventional-changelog-cli

# # env
# echo 'export NVM_DIR="/home/circleci/.nvm"' >> ${BASH_ENV}
# echo 'source $NVM_DIR/nvm.sh' >> ${BASH_ENV}
# echo "export PATH=/home/circleci/.cargo/bin:$PATH" >> ${BASH_ENV}
# - run:
# name: Run run-md Test
# command: |
# scripts/run-md-test.sh '^.*$' 1
# - store_artifacts:
# path: /tmp/run-md-test
# destination: run-md-test
# env
echo 'export NVM_DIR="/home/circleci/.nvm"' >> ${BASH_ENV}
echo 'source $NVM_DIR/nvm.sh' >> ${BASH_ENV}
echo "export PATH=/home/circleci/.cargo/bin:$PATH" >> ${BASH_ENV}
- run:
name: Run run-md Test
command: |
scripts/run-md-test.sh '^.*$' 1
- store_artifacts:
path: /tmp/run-md-test
destination: run-md-test
update-docker-images:
docker:
- image: circleci/rust
Expand Down
Loading