Skip to content

Commit

Permalink
Merge pull request #419 from theQRL/testnet
Browse files Browse the repository at this point in the history
Support for Bromine hard fork
  • Loading branch information
surg0r authored Mar 30, 2020
2 parents 965a127 + e5e7d6a commit bc490ec
Show file tree
Hide file tree
Showing 35 changed files with 7,101 additions and 1,490 deletions.
27 changes: 19 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,33 @@ jobs:
name: Install dependencies
command: |
npm install -g n
sudo n 8.11.4
sudo n 8.11.3
brew update
brew cleanup
brew cask install google-chrome
brew cask install chromedriver
# brew cask install google-chrome
# brew cask install chromedriver
# Prepare app
- run:
name: Prepare App
name: Install meteor v1.8.0.2
command: |
if [ -d ~/.meteor ]; then sudo ln -s ~/.meteor/meteor /usr/local/bin/meteor; fi
if [ ! -e $HOME/.meteor/meteor ]; then curl https://install.meteor.com | sh; fi
npm install -g chimp
npm install -g selenium-standalone
if [ ! -e $HOME/.meteor/meteor ]; then curl https://install.meteor.com/?release=1.8.0.2 | sh; fi
# - run:
# name: update npm to latest
# command: |
# npm i npm@latest -g
- run:
name: install dependencies
command: |
rm package-lock.json && rm .electrify/package-lock.json && npm install
- run:
name: install electrify-qrl globally
command: |
npm install -g electrify-qrl
npm install
- run:
name: report meteor node version
command: |
meteor node -e 'console.log("I am Node.js %s!", process.version);'
# Start meteor in background
Expand Down
Loading

0 comments on commit bc490ec

Please sign in to comment.