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
6 changes: 2 additions & 4 deletions nodebuilder
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ install_build_dependencies_dnf()
;;
rhel)
sudo subscription-manager identity > /dev/null 2>&1 ||
throw_error "Register your RHEL subscription with 'sudo subscription-manager subscribe'."
throw_error "Register your RHEL subscription with 'sudo subscription-manager subscribe' and re-run nodebuilder."
sudo dnf config-manager --enable "rhel-${OS_MAJOR_VERSION_ID}-for-${TARGET_ARCHITECTURE}-appstream-rpms" ||
throw_error "Failed to enable EPEL release rhel-${OS_MAJOR_VERSION_ID}-for-${TARGET_ARCHITECTURE}-appstream-rpms."
;;
Expand All @@ -879,9 +879,6 @@ install_build_dependencies_dnf()
;;
esac

dnf list installed epel-release > /dev/null 2>&1 ||
sudo dnf --assumeyes install "https://dl.fedoraproject.org/pub/epel/epel-release-latest-${OS_MAJOR_VERSION_ID}.noarch.rpm"

command -v torsocks > /dev/null 2>&1 &&
dependencies=$(torsocks curl --fail --silent --show-error --location --retry 2 "${BUILD_DEPENDENCIES_URL}") ||
dependencies=$(curl --fail --silent --show-error --location --retry 5 "${BUILD_DEPENDENCIES_URL}")
Expand Down Expand Up @@ -1796,6 +1793,7 @@ readonly TARGET_BITCOIN_VERSION_PADDED
if [ "${CURRENT_BITCOIN_VERSION_PADDED}" = "${TARGET_BITCOIN_VERSION_PADDED}" ]; then
log_info "Bitcoin Core ${target_bitcoin_version} was found."
elif [ "${compile_bitcoin_flag:-false}" = 'true' ] ||
is_running_in_container ||
[ "${TARGET_OPERATING_SYSTEM}" = 'alpine' ] ||
[ "${TARGET_OPERATING_SYSTEM}" = 'gentoo' ] ||
[ "${TARGET_OPERATING_SYSTEM}" = 'FreeBSD' ] ||
Expand Down
1 change: 0 additions & 1 deletion resources/dependencies/build_dependencies_zypper.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ make
python3
qrencode
sqlite3
zeromq
Loading