cURL / Mailing Lists / curl-users / Single Mail

curl-users

Re: curl-7.36.0 TESTFAIL: These test cases failed: 815 816 1513

From: dev <dev_at_cor0.com>
Date: Wed, 2 Apr 2014 11:35:29 -0400 (EDT)

On March 30, 2014 at 6:11 PM Daniel Stenberg <daniel_at_haxx.se> wrote:
> On Sun, 30 Mar 2014, Dan Fandrich wrote:
>
> > There's a magic URL that holds the most recently-released stable
> > version in an
> > easily-parsed format, but I don't remember what it is.
>
> http://curl.haxx.se/info

nope .. that didn't work for nightlies . :-\

I changed my nightly dl script thus :

# essential info is at http://curl.haxx.se/info
/usr/local/bin/wget --output-file=/dev/null -q \
-O - http://curl.haxx.se/info | /usr/xpg4/bin/grep "^Version" | \
/usr/xpg4/bin/sed 's/^Version\:\ //' > current_version.dat

Which results in :

node002$ cat ./tarballs/current_version.dat
7.36.0

So that is a big ol' 404 :

node002$ cat ./tarballs/fetch.log
--2014-04-02 06:00:01--
 http://curl.haxx.se/snapshots/curl-7.36.0-20140402.tar.gz
Resolving curl.haxx.se... 80.67.6.50, 2a00:1a28:1200:9::2
Connecting to curl.haxx.se|80.67.6.50|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2014-04-02 06:00:01 ERROR 404: Not Found.

However this works :

node002$ /usr/local/bin/wget --output-file=/dev/null -q \
-O - https://raw.githubusercontent.com/bagder/curl/master/RELEASE-NOTES
| \
/usr/bin/head -1 | /usr/xpg4/bin/sed 's/^Curl\ and\ libcurl\ //'
7.37.0

run my script :

node002$ ./curl_daily_fetch.sh

Results are :

node002$ find .
.
./curl_daily_fetch.sh
./curl-7.37.0-20140330.tar.gz
./curl_setup.sh
./tarballs
./tarballs/timestamp.dat
./tarballs/curl-7.37.0-20140402.tar.gz
./tarballs/fetch.log
./tarballs/current_version.dat
./README.mailx
node002$ cat ./tarballs/fetch.log
--2014-04-02 15:27:30--
 http://curl.haxx.se/snapshots/curl-7.37.0-20140402.tar.gz
Resolving curl.haxx.se... 80.67.6.50, 2a00:1a28:1200:9::2
Connecting to curl.haxx.se|80.67.6.50|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3570830 (3.4M) [application/x-gzip]
Saving to: 'curl-7.37.0-20140402.tar.gz'

     0K ... 100%
 411K=8.5s

2014-04-02 15:27:39 (411 KB/s) - 'curl-7.37.0-20140402.tar.gz' saved
[3570830/3570830]

With a bit more hackary I should have nightly builds going, at least
with Oracle Studio 12.3 and then GCC to follow next week.

Sorry, no progress on the x86_64 server yet. I have it ordered and
sitting in Toronto. Should pick it up this Friday, install and
update patches take a night and then I need to get it into the
datacenter. Could be a while before I get all the required
dependencies built however.

Dennis
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-users
FAQ: http://curl.haxx.se/docs/faq.html
Etiquette: http://curl.haxx.se/mail/etiquette.html
Received on 2014-04-02