2c2efd83fd
The macOS build ofe2cd0b6(the NeedsBootstrap rocksdb/ fix) failed at the 'Bundle Tor into app' step with bash exit code 6 after exactly 30s of curl hanging against archive.torproject.org. All 4 Tor download sites (Windows Qt, Windows daemon, Linux Qt .deb, Linux daemon .deb, macOS Qt) used 'curl -sL' with no timeouts and no retries — a single transient network drop from Azure westus to the Tor archive killed the job. Fix at all 4 sites: * curl -fSL (HTTP error -> non-zero exit; fail loudly) * --connect-timeout 15 / --max-time 120 (per-attempt bounds) * --retry 3 --retry-delay 5 --retry-connrefused --retry-all-errors (covers 5xx, DNS timeouts, and connection refused) * 'set -euo pipefail' at script top so any failure aborts cleanly * PowerShell variants get a manual retry loop with size check (1MB minimum — a 0-byte '200 OK' response from a broken mirror used to silently slip through) Also bump CLIENT_VERSION_REVISION 1 -> 4 (v6.1.4) for the upcoming release that will includee2cd0b6(NeedsBootstrap rocksdb/ fix). Release notes: v6.1.4: Tor bundle download resilience (4 CI sites hardened) +e2cd0b6(NeedsBootstrap rocksdb/ chain state detection). Supersedes v6.1.3 only on CI reliability; no protocol/wallet/chain format changes.
20 lines
548 B
C
20 lines
548 B
C
#ifndef CLIENTVERSION_H
|
|
#define CLIENTVERSION_H
|
|
|
|
//
|
|
// client versioning
|
|
//
|
|
|
|
// These need to be macros, as version.cpp's and triangles-qt.rc's voodoo requires it
|
|
#define CLIENT_VERSION_MAJOR 6
|
|
#define CLIENT_VERSION_MINOR 1
|
|
#define CLIENT_VERSION_REVISION 4
|
|
#define CLIENT_VERSION_BUILD 0
|
|
|
|
// Converts the parameter X to a string after macro replacement on X has been performed.
|
|
// Don't merge these into one macro!
|
|
#define STRINGIZE(X) DO_STRINGIZE(X)
|
|
#define DO_STRINGIZE(X) #X
|
|
|
|
#endif // CLIENTVERSION_H
|