Hello Everyone,
I am trying to compile gromacs version 2019.6. Whenever I’m running cmake … -DGMX_BUILD_OWN_FFTW=ON -DREGRESSIONTEST_DOWNLOAD=ON (as in the installation guide) or just cmake … im receiving the following error:
Downloading: http://gerrit.gromacs.org/download/regressiontests-2019.tar.gz
– [download 100% complete]
– [download 0% complete]
CMake Error at tests/CMakeLists.txt:57 (message):
error: downloading
‘http://gerrit.gromacs.org/download/regressiontests-2019.tar.gz’ failed
status_code: 22
status_string: “HTTP response code said error”
log: Trying 130.237.11.134:80…
Connected to gerrit.gromacs.org (130.237.11.134) port 80 (#0)
GET /download/regressiontests-2019.tar.gz HTTP/1.1
Host: gerrit.gromacs.org
User-Agent: curl/7.81.0
Accept: /
Mark bundle as not supporting multiuse
HTTP/1.1 301 Moved Permanently
Server: nginx/1.18.0 (Ubuntu)
Date: Tue, 17 Sep 2024 12:08:10 GMT
Content-Type: text/html
Content-Length: 178
Connection: keep-alive
Location: https://gerrit.gromacs.org/download/regressiontests-2019.tar.gz
Ignoring the response-body
[178 bytes data]
Connection #0 to host gerrit.gromacs.org left intact
Clear auth, redirects to port from 80 to 443
Issue another request to this URL:
‘https://gerrit.gromacs.org/download/regressiontests-2019.tar.gz’
Trying 130.237.11.134:443...
Connected to gerrit.gromacs.org (130.237.11.134) port 443 (#1)
ALPN, offering h2
ALPN, offering http/1.1
TLSv1.0 (OUT), TLS header, Certificate Status (22):
[5 bytes data]
TLSv1.3 (OUT), TLS handshake, Client hello (1):
[512 bytes data]
TLSv1.2 (IN), TLS header, Certificate Status (22):
[5 bytes data]
TLSv1.3 (IN), TLS handshake, Server hello (2):
[122 bytes data]
TLSv1.2 (IN), TLS header, Finished (20):
[5 bytes data]
TLSv1.2 (IN), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
[25 bytes data]
TLSv1.2 (IN), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
TLSv1.3 (IN), TLS handshake, Certificate (11):
[2612 bytes data]
TLSv1.2 (IN), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
TLSv1.3 (IN), TLS handshake, CERT verify (15):
[264 bytes data]
TLSv1.2 (IN), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
TLSv1.3 (IN), TLS handshake, Finished (20):
[52 bytes data]
TLSv1.2 (OUT), TLS header, Finished (20):
[5 bytes data]
TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
[1 bytes data]
TLSv1.2 (OUT), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
TLSv1.3 (OUT), TLS handshake, Finished (20):
[52 bytes data]
SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
ALPN, server accepted to use http/1.1
Server certificate:
subject: CN=gerrit.gromacs.org
start date: Jul 15 20:48:39 2024 GMT
expire date: Oct 13 20:48:38 2024 GMT
subjectAltName: host “gerrit.gromacs.org” matched cert’s “gerrit.gromacs.org”
issuer: C=US; O=Let’s Encrypt; CN=R11
SSL certificate verify result: unable to get local issuer certificate (20), continuing anyway.
TLSv1.2 (OUT), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
GET /download/regressiontests-2019.tar.gz HTTP/1.1
Host: gerrit.gromacs.org
User-Agent: curl/7.81.0
Accept: /
TLSv1.2 (IN), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
[281 bytes data]
TLSv1.2 (IN), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
[281 bytes data]
old SSL session ID is stale, removing
TLSv1.2 (IN), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
Mark bundle as not supporting multiuse
HTTP/1.1 403 Forbidden
Server: nginx/1.18.0 (Ubuntu)
Date: Tue, 17 Sep 2024 12:08:10 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
The requested URL returned error: 403
Closing connection 1
TLSv1.2 (OUT), TLS header, Supplemental data (23):
[5 bytes data]
[1 bytes data]
TLSv1.3 (OUT), TLS alert, close notify (256):
[2 bytes data]
If I manually download the regressiontest tarball and run cmake … -DREGRESSIONTEST_PATH=PATH/TO/TEST/ I am still receiving the same error as if the software still tries to download the tests from the server. Someone ever experienced this problem?
Best regards