Tiago Gomes pushed to branch tiagogomes/issue-550 at BuildStream / buildstream
Commits:
-
d1b640d0
by James Ennis at 2018-08-06T13:10:12Z
-
be163e8d
by Jonathan Maw at 2018-08-06T14:01:58Z
-
4d6dbabe
by Tiago Gomes at 2018-08-06T15:03:25Z
3 changed files:
- buildstream/_scheduler/queues/pullqueue.py
- buildstream/data/userconfig.yaml
- doc/source/install_linux_distro.rst
Changes:
| ... | ... | @@ -29,7 +29,7 @@ class PullQueue(Queue): |
| 29 | 29 |
|
| 30 | 30 |
action_name = "Pull"
|
| 31 | 31 |
complete_name = "Pulled"
|
| 32 |
- resources = [ResourceType.UPLOAD]
|
|
| 32 |
+ resources = [ResourceType.DOWNLOAD]
|
|
| 33 | 33 |
|
| 34 | 34 |
def process(self, element):
|
| 35 | 35 |
# returns whether an artifact was downloaded or not
|
| ... | ... | @@ -35,13 +35,13 @@ cache: |
| 35 | 35 |
#
|
| 36 | 36 |
scheduler:
|
| 37 | 37 |
|
| 38 |
- # Maximum number of simultaneous source downloading tasks.
|
|
| 38 |
+ # Maximum number of simultaneous downloading tasks.
|
|
| 39 | 39 |
fetchers: 10
|
| 40 | 40 |
|
| 41 | 41 |
# Maximum number of simultaneous build tasks.
|
| 42 | 42 |
builders: 4
|
| 43 | 43 |
|
| 44 |
- # Maximum number of simultaneous artifact uploading tasks.
|
|
| 44 |
+ # Maximum number of simultaneous uploading tasks.
|
|
| 45 | 45 |
pushers: 4
|
| 46 | 46 |
|
| 47 | 47 |
# Maximum number of retries for network tasks.
|
| ... | ... | @@ -132,8 +132,8 @@ For the default plugins:: |
| 132 | 132 |
|
| 133 | 133 |
Ubuntu 16.04 LTS
|
| 134 | 134 |
^^^^^^^^^^^^^^^^
|
| 135 |
-On Ubuntu 16.04, neither `bubblewrap<https://github.com/projectatomic/bubblewrap/>`
|
|
| 136 |
-or `ostree<https://github.com/ostreedev/ostree>` are available in the official repositories.
|
|
| 135 |
+On Ubuntu 16.04, neither `bubblewrap <https://github.com/projectatomic/bubblewrap/>`_
|
|
| 136 |
+or `ostree <https://github.com/ostreedev/ostree>`_ are available in the official repositories.
|
|
| 137 | 137 |
You will need to install them in whichever way you see fit. Refer the the upstream documentation
|
| 138 | 138 |
for advice on this.
|
| 139 | 139 |
|
