Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
26 changes: 13 additions & 13 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
beacon_node_service_name: 'beacon-node-{{ beacon_node_network }}-{{ beacon_node_repo_branch }}'
beacon_node_service_path: '/data/{{ beacon_node_service_name }}'

beacon_node_data_path: '{{ beacon_node_service_path }}/data'
beacon_node_config_dir: '{{ beacon_node_service_path }}/conf'
beacon_node_data_path: '{{ beacon_node_service_path }}/data'
beacon_node_config_dir: '{{ beacon_node_service_path }}/conf'
beacon_node_config_file_path: '{{ beacon_node_config_dir }}/config.toml'
beacon_node_repo_path: '{{ beacon_node_service_path }}/repo'
beacon_node_bin_path: '{{ beacon_node_service_path }}/bin'
beacon_node_logs_link: '{{ beacon_node_service_path }}/logs'
beacon_node_netkey_path: '{{ beacon_node_data_path }}/netkey'
beacon_node_era_dir_path: '{{ beacon_node_data_path }}/era'
beacon_node_secrets_path: '{{ beacon_node_data_path }}/secrets'
beacon_node_validators_path: '{{ beacon_node_data_path }}/validators'
beacon_node_binary_path: '{{ beacon_node_bin_path }}/nimbus_beacon_node'
beacon_node_repo_path: '{{ beacon_node_service_path }}/repo'
beacon_node_bin_path: '{{ beacon_node_service_path }}/bin'
beacon_node_logs_link: '{{ beacon_node_service_path }}/logs'
beacon_node_netkey_path: '{{ beacon_node_data_path }}/netkey'
beacon_node_era_dir_path: '{{ beacon_node_data_path }}/era'
beacon_node_secrets_path: '{{ beacon_node_data_path }}/secrets'
beacon_node_validators_path: '{{ beacon_node_data_path }}/validators'
beacon_node_binary_path: '{{ beacon_node_bin_path }}/nimbus_beacon_node'

# Ability to prevernt restarts after service changes.
# This is higher priority, than force_restart.
Expand All @@ -35,9 +35,9 @@ beacon_node_update_restarts_service: true
beacon_node_update_build: '{{ beacon_node_repo_branch != "stable" }}'
# Update with Build method
beacon_node_update_build_script: '{{ beacon_node_service_path }}/build.sh'
beacon_node_update_build_targets: ['nimbus_beacon_node']
beacon_node_update_build_targets: ['nimbus']
beacon_node_update_build_days_kept: 3
beacon_node_update_build_jobs: '{{ ansible_processor_vcpus / 2 | round(0, "ceil") }}'
beacon_node_update_build_jobs: '{{ ansible_processor_vcpus * 0.25 | round(0, "ceil") | int }}'
beacon_node_update_build_log_level: 'TRACE'
beacon_node_update_build_nim_flags: >-
-d:noSignalHandler
Expand All @@ -56,7 +56,7 @@ beacon_node_resync_timer_frequency: 'weekly'
beacon_node_resync_timer_random_delay_sec: 86400 # day
#beacon_node_resync_timer_trusted_api_url: ~

beacon_node_repo_url: 'https://github.com/status-im/nimbus-eth2'
beacon_node_repo_url: 'https://github.com/status-im/nimbus-eth1'
beacon_node_repo_branch: 'stable'

beacon_node_network: 'mainnet'
Expand Down
14 changes: 7 additions & 7 deletions templates/scripts/build.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,24 @@ function buildBinaries() {
LOG_LEVEL="{{ beacon_node_update_build_log_level }}" \
NIMFLAGS="{{ beacon_node_update_build_nim_flags }}"

# Rename binaries to match commit they were built from.
cd build/

{% for target in beacon_node_update_build_targets %}
# Rename binaries to match commit they were built from.
mv "build/{{ target }}" "build/{{ target }}_${COMMIT}"
{% endfor %}

# Create a symbolic link to the latest version
{% for target in beacon_node_update_build_targets %}
ln -vfrs build/{{ target }}_${COMMIT} {{ beacon_node_bin_path }}/{{ target }}
{% endfor %}
ln -vfrs "build/{{ target }}_${COMMIT}" "${INSTALL_PATH}/{{ target }}"

{% endfor %}
# Delete copies that are older than N days
find build -mtime +{{ beacon_node_update_build_days_kept }} -exec rm '{}' \+
find . -mtime +{{ beacon_node_update_build_days_kept }} -exec rm '{}' \+
}

#-------------------------------------------------------------------------------

BRANCH="${1:-{{ beacon_node_repo_branch }}}"
SERVICE="{{ beacon_node_service_name }}.service"
INSTALL_PATH="{{ beacon_node_bin_path }}"
SERVICE_PATH="{{ beacon_node_service_path }}"

echo " >>> Build Start: $(date -u +"%Y-%m-%dT%H:%M:%SZ")"
Expand Down