Skip to content

Commit 5463e1e

Browse files
committed
Fixes after Travis CI team feedback
1 parent 39823c3 commit 5463e1e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

user/deployment/biicode.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: biicode deployment
33
layout: en
4-
permalink: biicode/
4+
permalink: /user/deployment/biicode/
55
---
66

77
Travis CI can automatically publish your [biicode](https://www.biicode.com) blocks after a successful deploy.
@@ -58,7 +58,7 @@ Builds triggered from Pull Requests will never trigger a deploy.
5858

5959
After your tests ran and before the deploy, Travis CI will clean up any additional files and changes you made.
6060

61-
Maybe that is not what you want, as you might generate some artifacts that are supposed to be deployed too (like dependencies' data). There is now an option to skip the clean up:
61+
Maybe that is not what you want, as you might generate some artifacts that are supposed to be deployed too (like dependencies' data). There is an option to skip the clean up:
6262

6363
{% highlight yaml %}
6464
deploy:
@@ -113,14 +113,14 @@ install
113113
Let's say you have a C++ math library called *CppMath*. It's hosted in github and you are running some unit tests via Travis CI.
114114
Deploy your CppMath library to biicode, a C and C++ dependency manager, make it available for everybody to use via an `#include`!
115115

116-
Use Travis CI with biicode to automatize* the process:
116+
Use Travis CI with biicode to automate the process:
117117

118118
- Run some unit tests on the library
119119
- Use `bii publish` command to deploy to biicode.
120120

121121
Here's [CppMath example code](https://github.com/Manu343726/CppMath/), it's structured as a `manu343726/cppmath` biicode block. *manu343726 is the biicode developer who wrote the example, hence that user instead of `developer`.*
122122

123-
Supposing your biicode account is `developer`, create a `.travis.yml` file to automatize deploy and publish like this:
123+
Supposing your biicode account is `developer`, create a `.travis.yml` file to automate deploy and publish like this:
124124

125125
{% highlight yaml %}
126126
install:
@@ -140,7 +140,7 @@ deploy:
140140
repo: developer/cppmath #GitHub repo
141141
{% endhighlight %}
142142

143-
Script part creates, builds and runs the project and if it's a success Travis CI executes deploy publishing the `developer/cppmath` block.
143+
`install:` installs biicode cand configures C++ tools. `script:` creates, builds and runs the project. If it's a success Travis CI executes deploy publishing the `developer/cppmath` block.
144144

145145
>**Tip**
146146
>biicode generates an executable `user_blockname_sourcefilename` for each source file with a `main()` function. In the example it would be `developer_cppmath_tests`.

0 commit comments

Comments
 (0)