Skip to content

Commit 07d068f

Browse files
committed
retry 3
1 parent 3246925 commit 07d068f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci-buildmatrix-cpp11.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ jobs:
4848
SOFA20231011: ${{ secrets.SOFA20231011 }}
4949
run: |
5050
set -euo pipefail
51-
curl -fL "https://syncandshare.desy.de/index.php/s/${VBF_TOKEN}/download" -o VBF.tar.gz
51+
curl -fL --retry 3 --retry-delay 3 "https://syncandshare.desy.de/index.php/s/${VBF_TOKEN}/download" -o VBF.tar.gz
5252
mkdir -p sofa
53-
curl -fL "https://syncandshare.desy.de/index.php/s/${SOFA20231011}/download" -o sofa/sofa.tar.gz
53+
curl -fL --retry 3 --retry-delay 3 "https://syncandshare.desy.de/index.php/s/${SOFA20231011}/download" -o sofa/sofa.tar.gz
5454
5555
- name: Build inside ROOT CentOS7 container
5656
run: |

.github/workflows/ci-buildmatrix-cpp17.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727
2828
- name: vbf
2929
run: |
30-
curl -L https://syncandshare.desy.de/index.php/s/${{ secrets.VBFcpp17 }}/download -o VBF.tar.gz
30+
curl -L --retry 3 --retry-delay 3 https://syncandshare.desy.de/index.php/s/${{ secrets.VBFcpp17 }}/download -o VBF.tar.gz
3131
mkdir VBF && tar -xzf VBF.tar.gz -C VBF --strip-components=1
3232
cd VBF && ./configure --prefix=$(echo $GITHUB_WORKSPACE)/VBF
3333
make
3434
make install
3535
3636
- name: sofa
3737
run: |
38-
curl -L https://syncandshare.desy.de/index.php/s/${{ secrets.SOFA20231011 }}/download -o sofa/sofa.tar.gz
38+
curl -L --retry 3 --retry-delay 3 https://syncandshare.desy.de/index.php/s/${{ secrets.SOFA20231011 }}/download -o sofa/sofa.tar.gz
3939
./install_sofa.sh
4040
4141
- name: eventdisplay

0 commit comments

Comments
 (0)