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

Publish solidity docs #816

Merged
merged 26 commits into from
Oct 8, 2018
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2e3562d
Added docs for the Solidity code
JuliusBrain Sep 27, 2018
2643d4b
WIP dockerfile
JuliusBrain Sep 27, 2018
7912216
Merge branch 'dev' into feature/solidity_docs
JuliusBrain Oct 1, 2018
6649077
Added solidoc dockerfile
acroca Oct 2, 2018
2a55885
Updated ReadMe and regenerated the docs using the docker tool
JuliusBrain Oct 2, 2018
4f27a91
Added pipeline for drone to create solidity docs
JuliusBrain Oct 2, 2018
1a7b3c1
Updated mkdocs.yml, fixes
JuliusBrain Oct 3, 2018
ec5ae91
Better use of the docker image
acroca Oct 3, 2018
d4e5893
Merge branch 'dev' into feature/solidity_docs
yourheropaul Oct 4, 2018
f9381af
Updated solidoc docker implementation
yourheropaul Oct 4, 2018
38b2306
Merge branch 'feature/solidity_docs' of github.com:kowala-tech/kcoin …
yourheropaul Oct 4, 2018
06b8294
Smart contracts -> Core Contracts
JuliusBrain Oct 4, 2018
4e29320
Build node modules before anything else
yourheropaul Oct 4, 2018
cbbf634
Regenerated docs; separated assert and build
yourheropaul Oct 4, 2018
07d363f
Moved docs to proper location
yourheropaul Oct 4, 2018
16a5f98
Added git debugging
yourheropaul Oct 4, 2018
11febda
Moved docs to the proper directory
yourheropaul Oct 4, 2018
3eb8db9
Added diff
yourheropaul Oct 5, 2018
2a1ee17
Added solidoc 1.0.3
yourheropaul Oct 5, 2018
eae67bc
Fixed typo
yourheropaul Oct 5, 2018
0c80304
Merge branch 'dev' into feature/solidity_docs
yourheropaul Oct 5, 2018
f1a9565
Update go_generate
yourheropaul Oct 5, 2018
2d99e88
Generate solidity docs on push to dev
yourheropaul Oct 8, 2018
dd38f3a
Merge branch 'dev' into feature/solidity_docs
yourheropaul Oct 8, 2018
5412a3a
Don't execute on pushes to feature branches
yourheropaul Oct 8, 2018
7c68ddf
Resolved merge; only trigger doc build on dev merge
yourheropaul Oct 8, 2018
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
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