We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26517bf commit 099d7baCopy full SHA for 099d7ba
.github/workflows/build.yml
@@ -210,7 +210,11 @@ jobs:
210
RESULT=0
211
set -x
212
213
+ # CPUs/2
214
+ MAX_CONCURRENT_TASKS=$(($(nproc) / 2))
215
+
216
leeway build dev:all \
217
+ --max-concurrent-tasks $MAX_CONCURRENT_TASKS \
218
--docker-build-options network=host \
219
--cache remote \
220
-Dversion=$VERSION \
components/BUILD.yaml
@@ -8,13 +8,12 @@ packages:
8
argdeps:
9
- version
10
deps:
11
- - :all-docker
12
- :docker-versions
13
- :publish-api
+ - components/gitpod-protocol:all
14
- dev:all-app
15
- - components:all-docker
16
- install/installer:docker
17
- - components/gitpod-protocol:all
+ - :all-docker
18
- name: docker-versions
19
type: docker
20
config:
0 commit comments