Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Merge pull request #4022 from ethereum/develop
Browse files Browse the repository at this point in the history
`develop` changes into `master`
  • Loading branch information
evertonfraga committed Jul 23, 2018
2 parents 88b10c4 + c32cb44 commit c532f2a
Show file tree
Hide file tree
Showing 24 changed files with 489 additions and 743 deletions.
143 changes: 143 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,143 @@
#
# TODO: compilation
# TODO: store_artifacts
# TODO: name commands properly
# TODO: mac job
# TODO: improve caching
# TODO: fix `xvfb gulp test` command
# TODO: windows job
# TODO: store_test_results
# TODO: docker images
#

defaults: &defaults
working_directory: /home/circleci/mist
docker:
- image: circleci/node:8.9.4-browsers
environment:
# Setting variable to fix node-gyp build error:
# https://github.com/nodejs/node/issues/7173#issuecomment-224772258
- CXX_host: 'g++ -m32'

linux_dependencies: &linux_dependencies
name: Linux package dependencies
# Installing multilib (build for 32 and 64 architectures):
# https://www.quora.com/How-do-I-fix-fatal-error-sys-cdefs-h-file-not-found-include-sys-cdefs-h
command: |
sudo apt-get update &&
sudo apt-get install --no-install-recommends -y gcc-multilib g++-multilib icnsutils xz-utils &&
sudo apt-get install graphicsmagick
install_meteor: &install_meteor
name: Installing Meteor
# PATH=$PATH:$HOME/.meteor && curl -L https://raw.githubusercontent.com/arunoda/travis-ci-meteor-packages/1390e0f96162d0d70fc1e60a6b0f4f891a0e8f42/configure.sh | /bin/sh
command: which meteor || curl https://install.meteor.com | /bin/sh

install_node_modules: &install_node_modules
name: Installing node dependencies using yarn
command: yarn


# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
<<: *defaults
steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

# Setting PATH: https://circleci.com/docs/2.0/env-vars/#setting-path
- run: echo 'export PATH=`yarn global bin`:$PATH' >> $BASH_ENV

- run:
<<: *linux_dependencies
- run:
<<: *install_meteor
- run:
<<: *install_node_modules

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- persist_to_workspace:
root: /home/circleci/
paths:
- mist

mist-linux:
<<: *defaults
steps:
- attach_workspace:
at: /home/circleci/

- run:
<<: *linux_dependencies
- run:
<<: *install_meteor
- run:
<<: *install_node_modules

- run: yarn build:mist --linux

- store_artifacts:
path: dist_mist/release

wallet-linux:
<<: *defaults
steps:
- attach_workspace:
at: /home/circleci/

- run:
<<: *linux_dependencies
- run:
<<: *install_meteor
- run:
<<: *install_node_modules

- run: yarn build:wallet --linux

- store_artifacts:
path: dist_wallet/release

spectron-test:
docker:
- image: circleci/node:8.9.4
steps:
- attach_workspace:
at: /home/circleci/
- run: xvfb-run yarn test:e2e

unit-test:
<<: *defaults
steps:
- attach_workspace:
at: /home/circleci/
- run: << *install_node_modules
- run: yarn test:unit:once

workflows:
version: 2
build_and_test:
jobs:
- build
- mist-linux:
requires:
- build
- wallet-linux:
requires:
- build
- unit-test:
requires:
- build
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
@@ -1,4 +1,4 @@
* [ ] I've asked for help in the [Mist Gitter](http://gitter.im/ethereum/mist) before filing this issue. - [ ] I've asked for help in the [Mist Gitter](http://gitter.im/ethereum/mist) before filing this issue.


<!-- Please fill in these information below: --> <!-- Please fill in these information below: -->


Expand Down
3 changes: 1 addition & 2 deletions .github/triage.yml
@@ -1,2 +1 @@
initLabels: label: "Status: Triage"
- "Status: Triage"
3 changes: 3 additions & 0 deletions .gitmodules
@@ -1,3 +1,6 @@
[submodule "dapp-styles"] [submodule "dapp-styles"]
path = interface/public/dapp-styles path = interface/public/dapp-styles
url = git://github.com/ethereum/dapp-styles.git url = git://github.com/ethereum/dapp-styles.git
[submodule "meteor-dapp-wallet"]
path = meteor-dapp-wallet
url = https://github.com/ethereum/meteor-dapp-wallet.git
93 changes: 24 additions & 69 deletions .travis.yml
Expand Up @@ -8,105 +8,60 @@ cache:


sudo: required sudo: required


branches:
only:
- develop
- master
- /^greenkeeper/.*$/

matrix: matrix:
include: include:
# WINDOWS cross-built from linux
- os: linux
dist: trusty
env:
- GULP_PLATFORM=win
addons:
apt:
packages:
- icnsutils
- graphicsmagick
- xz-utils
- nsis
- g++-multilib
sources:
- mono
before_install:
- sudo dpkg --add-architecture i386 && sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-get update -q
- sudo apt-get install --no-install-recommends -y mono-devel ca-certificates-mono wine1.8

# LINUX # LINUX
- os: linux - os: linux
dist: trusty dist: trusty
env: env:
- GULP_PLATFORM=linux - GULP_PLATFORM=linux
addons: addons:
artifacts:
paths:
- $( ls dist_{mist,wallet}/release/* | tr "\n" ":" )
apt: apt:
packages: packages:
- icnsutils - icnsutils
- graphicsmagick - graphicsmagick
- xz-utils - xz-utils
- gcc-multilib - gcc-multilib
- g++-multilib - g++-multilib

before_install:
# prepare integration tests
- export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start

# MAC # MAC
- os: osx - os: osx
osx_image: xcode8.3 # currently xcode8.1+ doesn't support electron-builder macOS code-signing (https://github.com/electron-userland/electron-builder/issues/820#issuecomment-267777060) osx_image: xcode8.3
env: env:
- GULP_PLATFORM=mac - GULP_PLATFORM=mac
addons:
artifacts:
paths:
- $( ls dist_{mist,wallet}/release/* | tr "\n" ":" )
before_install: before_install:
- npm install -g yarn # macOS xcode8 image doesn't natively support yarn yet - npm install -g yarn

allow_failures:
- os: osx

fast_finish: true



install: install:
- echo $PATH
- PATH=$PATH:$HOME/.meteor && curl -L https://raw.githubusercontent.com/arunoda/travis-ci-meteor-packages/1390e0f96162d0d70fc1e60a6b0f4f891a0e8f42/configure.sh | /bin/sh - PATH=$PATH:$HOME/.meteor && curl -L https://raw.githubusercontent.com/arunoda/travis-ci-meteor-packages/1390e0f96162d0d70fc1e60a6b0f4f891a0e8f42/configure.sh | /bin/sh
- export PATH=$PATH:`yarn global bin`
- yarn global add gulp-cli meteor-build-client electron@1.8.4
- yarn - yarn


script: # only code signs when on master
# disable macOS code-signing (production certificate) on develop branch
- if [[ $TRAVIS_BRANCH != "master" ]]; then unset CSC_LINK CSC_KEY_PASSWORD; fi - if [[ $TRAVIS_BRANCH != "master" ]]; then unset CSC_LINK CSC_KEY_PASSWORD; fi
# windows code-signing on master branch
- if [[ $GULP_PLATFORM == "win" && $TRAVIS_BRANCH == "master" ]]; then export CSC_LINK=$CSC_WIN_LINK && CSC_KEY_PASSWORD=$CSC_WIN_KEY_PASSWORD; fi


# unit test script:
- if [[ $GULP_PLATFORM == "linux" ]]; then yarn test:unit:once; fi - yarn test:unit:once


# build mist - yarn build:mist --$GULP_PLATFORM
- if [[ $GULP_PLATFORM == "mac" ]]; then travis_wait 60 gulp --$GULP_PLATFORM; fi # increase timeout for slower mac builds
- if [[ $GULP_PLATFORM != "mac" ]]; then gulp --$GULP_PLATFORM; fi


# assert creation of Mist artifacts - yarn build:wallet --$GULP_PLATFORM
- gulp verify-artifacts --mist --$GULP_PLATFORM

# build wallet if on master branch
- if [[ $TRAVIS_BRANCH == "master" ]]; then travis_wait 60 gulp --wallet --$GULP_PLATFORM; fi


# assert creation of Wallet artifacts - yarn test:e2e
- if [[ $TRAVIS_BRANCH == "master" ]]; then gulp verify-artifacts --wallet --$GULP_PLATFORM; fi

# prepare integration tests
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi

# currently, tests should run in linux and mac
- if [[ $GULP_PLATFORM != "win" ]]; then gulp test; fi


after_success: after_success:
- if [[ $TRAVIS_BRANCH == "master" ]]; then gulp upload-queue --$GULP_PLATFORM && gulp upload-queue --wallet --$GULP_PLATFORM; fi - if [[ $TRAVIS_BRANCH == "master" ]]; then

yarn dist:mist --$GULP_PLATFORM;
yarn dist:wallet --$GULP_PLATFORM;
fi


notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/33972d9e627a142c57a6
on_success: change
on_failure: always
on_start: never
34 changes: 17 additions & 17 deletions CODE_OF_CONDUCT.md
Expand Up @@ -20,28 +20,28 @@ If you see someone who is making an extra effort to ensure our community is welc


The following behaviors are expected and requested of all community members: The following behaviors are expected and requested of all community members:


* Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this community. - Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this community.
* Exercise consideration and respect in your speech and actions. - Exercise consideration and respect in your speech and actions.
* Attempt collaboration before conflict. - Attempt collaboration before conflict.
* Refrain from demeaning, discriminatory, or harassing behavior and speech. - Refrain from demeaning, discriminatory, or harassing behavior and speech.
* Be mindful of your surroundings and of your fellow participants. Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential. - Be mindful of your surroundings and of your fellow participants. Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential.
* Remember that community event venues may be shared with members of the public; please be respectful to all patrons of these locations. - Remember that community event venues may be shared with members of the public; please be respectful to all patrons of these locations.


## 4. Unacceptable Behavior ## 4. Unacceptable Behavior


The following behaviors are considered harassment and are unacceptable within our community: The following behaviors are considered harassment and are unacceptable within our community:


* Violence, threats of violence or violent language directed against another person. - Violence, threats of violence or violent language directed against another person.
* Sexist, racist, homophobic, transphobic, ableist or otherwise discriminatory jokes and language. - Sexist, racist, homophobic, transphobic, ableist or otherwise discriminatory jokes and language.
* Posting or displaying sexually explicit or violent material. - Posting or displaying sexually explicit or violent material.
* Posting or threatening to post other people’s personally identifying information ("doxing"). - Posting or threatening to post other people’s personally identifying information ("doxing").
* Personal insults, particularly those related to gender, sexual orientation, race, religion, or disability. - Personal insults, particularly those related to gender, sexual orientation, race, religion, or disability.
* Inappropriate photography or recording. - Inappropriate photography or recording.
* Inappropriate physical contact. You should have someone’s consent before touching them. - Inappropriate physical contact. You should have someone’s consent before touching them.
* Unwelcome sexual attention. This includes, sexualized comments or jokes; inappropriate touching, groping, and unwelcomed sexual advances. - Unwelcome sexual attention. This includes, sexualized comments or jokes; inappropriate touching, groping, and unwelcomed sexual advances.
* Deliberate intimidation, stalking or following (online or in person). - Deliberate intimidation, stalking or following (online or in person).
* Advocating for, or encouraging, any of the above behavior. - Advocating for, or encouraging, any of the above behavior.
* Sustained disruption of community events, including talks and presentations. - Sustained disruption of community events, including talks and presentations.


## 5. Consequences of Unacceptable Behavior ## 5. Consequences of Unacceptable Behavior


Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Expand Up @@ -6,14 +6,14 @@


To help improve Mist (_Ethereum Wallet_), please include the following: To help improve Mist (_Ethereum Wallet_), please include the following:


* What do you run? (_Binary version from [releases](https://github.com/ethereum/mist/releases) or a development version from the [commandline](https://github.com/ethereum/mist#run-mist)_) - What do you run? (_Binary version from [releases](https://github.com/ethereum/mist/releases) or a development version from the [commandline](https://github.com/ethereum/mist#run-mist)_)
* Which version do you use? (_Check the `VERSION` file in the Mist folder_) - Which version do you use? (_Check the `VERSION` file in the Mist folder_)
* What OS you're on? - What OS you're on?


If applicable: If applicable:


* Log file (Linux: `~/.config/Mist/logs/all.log`, Windows: `%APPDATA%/Roaming/Mist/logs/all.log`, MacOSX: `~/Library/Application Support/Mist/logs/all.log`) - Log file (Linux: `~/.config/Mist/logs/all.log`, Windows: `%APPDATA%/Roaming/Mist/logs/all.log`, MacOSX: `~/Library/Application Support/Mist/logs/all.log`)
* Screenshot (for GUI related issues) - Screenshot (for GUI related issues)


## Pull Requests ## Pull Requests


Expand Down

0 comments on commit c532f2a

Please sign in to comment.