-
Notifications
You must be signed in to change notification settings - Fork 45
update build instructions #141
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,7 +161,27 @@ Composer works great in combination with [Swarmer][swarmer] — another tool we' | |
|
||
### How to build | ||
|
||
Dependencies: you only need `docker` and `bash` installed on your machine. | ||
#### To build composer | ||
|
||
environmental variable ANDROID_HOME must be set. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Capital There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And afaik it's called environment variable, not environmental hehe There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. :greenpeace: |
||
|
||
```console | ||
./gradlew build | ||
``` | ||
|
||
#### To build html-report | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Build HTML report module"? |
||
|
||
you need `npm` and `nodejs` packages installed. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dependencies: |
||
|
||
```console | ||
cd html-report | ||
npm install | ||
npm build | ||
``` | ||
|
||
#### All-in-one script (used in Travis build) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we put this one at the top of "How to build"? I don't want people install npm and stuff to build Composer |
||
|
||
you only need `docker` and `bash` installed on your machine. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dependencies: |
||
|
||
```console | ||
ci/build.sh | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Build Composer