Skip to content

Commit

Permalink
Publish solidity docs (#816)
Browse files Browse the repository at this point in the history
* Added docs for the Solidity code

* WIP dockerfile

* Added solidoc dockerfile

* Updated ReadMe and regenerated the docs using the docker tool

* Added pipeline for drone to create solidity docs

* Updated mkdocs.yml, fixes

* Better use of the docker image

* Updated solidoc docker implementation

* Smart contracts -> Core Contracts

* Build node modules before anything else

* Regenerated docs; separated assert and build

* Moved docs to proper location

* Added git debugging

* Moved docs to the proper directory

* Added diff

* Added solidoc 1.0.3

* Fixed typo

* Update go_generate

* Generate solidity docs on push to dev

* Don't execute on pushes to feature branches
  • Loading branch information
yourheropaul authored Oct 8, 2018
1 parent 4dd553a commit f50daaf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,26 @@ pipeline:
commands:
- make install_tools
when:
event: [pull_request]
event: [push, pull_request]
branch: [dev]

truffle_node_modules:
group: truffle_setup
image: kowalatech/go:1.0.12
commands:
- make client/contracts/truffle/node_modules
when:
event: [pull_request]
event: [push, pull_request]
branch: [dev]

build_solidity_docs:
group: solidity_docs
image: kowalatech/solidoc:1.0.3
commands:
- make solidoc_generate
when:
event: [pull_request]
event: [push, pull_request]
branch: [dev]

go_generate:
group: generate
Expand Down

0 comments on commit f50daaf

Please sign in to comment.