Skip to content

Commit 3673fe6

Browse files
committed
Tests: Switch back to original mirror and add curl verbose
This commit just aims at running the tests on the original FreeFem repo to see wether ljll mirror works.
1 parent 69d7895 commit 3673fe6

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

.github/workflows/full-mpich.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ on:
77
- develop
88
- master
99

10-
# pull_request:
11-
# branches:
12-
# - develop
10+
pull_request:
11+
branches:
12+
- develop
1313

1414
# For development phase
1515
workflow_dispatch:

.github/workflows/full-msmpi.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ on:
77
- develop
88
- master
99

10-
# pull_request:
11-
# branches:
12-
# - develop
10+
pull_request:
11+
branches:
12+
- develop
1313

1414
# For development phase
1515
workflow_dispatch:

.github/workflows/full-openmpi.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ on:
77
- develop
88
- master
99

10-
# pull_request:
11-
# branches:
12-
# - develop
10+
pull_request:
11+
branches:
12+
- develop
1313

1414
# For development phase
1515
workflow_dispatch:

.github/workflows/minimal.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ on:
55
- develop
66
- master
77

8-
# pull_request:
9-
# branches:
10-
# - develop
8+
pull_request:
9+
branches:
10+
- develop
1111

1212
# For development phase
1313
workflow_dispatch:

.github/workflows/sequential.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
- develop
77
- master
88

9-
# pull_request:
10-
# branches:
11-
# - develop
9+
pull_request:
10+
branches:
11+
- develop
1212

1313
# For development phase
1414
workflow_dispatch:

3rdparty/getall

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ sub downloadone{
266266
system $cmd;
267267
if($?){
268268
print "Download failed from $url of $pkg\n";
269-
my $url="https://joliv.et/freefem/pkg/$pkg";
269+
my $url="https://www.ljll.fr/hecht/pkg/$pkg";
270270
my $cmd="../bin/build/download $url pkg/$pkg $opts";
271271
print "Try other site: $url\n";
272272
system $cmd;
@@ -286,7 +286,7 @@ sub downloadone{
286286
my $md5check=md5_hex(`cat pkg/$pkg`);
287287
if( ( $md5 ne "none") && ($md5check ne $md5)){
288288
print "Download failed (MD5 check $md5check ) from $url of $pkg\n";
289-
my $url="https://joliv.et/freefem/pkg/$pkg";
289+
my $url="https://www.ljll.fr/hecht/pkg/$pkg";
290290
my $cmd="../bin/build/download $url pkg/$pkg $opts";
291291
print "Try other site: $url\n";
292292
system $cmd;

bin/build/download

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ then
4444
ret=$?
4545
elif test -x /usr/bin/curl
4646
then
47-
curl -L "$1" --output "$2" --connect-timeout 30
47+
curl -L "$1" --output "$2" --connect-timeout 30 -v
4848
ret=$?
4949

5050
elif test -x /usr/bin/GET

0 commit comments

Comments
 (0)