beacon-node-builds: allow for repo updates for select builds

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2021-02-22 21:35:30 +01:00
parent f931c3cde1
commit aee3b5eff5
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 3 additions and 2 deletions

View File

@ -24,3 +24,4 @@ beacon_node_builds_branches:
version: 'v1.0.8'
targets: ['nimbus_beacon_node', 'nimbus_signing_process']
enabled: false
update: true

View File

@ -13,8 +13,8 @@
version: '{{ item.version }}'
dest: '{{ beacon_node_builds_path }}/{{ item.name }}/repo'
force: true
# Don't update or timer might miss some changes
update: false
# Normally we don't update or timer might miss some changes.
update: '{{ item.get("update", false) }}'
become_user: '{{ beacon_node_builds_user }}'
- name: '{{ item.name }} - Create script'