Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
83b4f02
Update release_branches.yml
MyroTk Aug 8, 2023
0ae7b4b
Update release_branches.yml
MyroTk Aug 9, 2023
b14c2d9
Update release_branches.yml
MyroTk Aug 9, 2023
4022cc7
Update release_branches.yml
MyroTk Aug 9, 2023
31023f1
Update release_branches.yml
MyroTk Aug 10, 2023
dc7ec6e
Update release_branches.yml
MyroTk Aug 10, 2023
0f5dacc
Update release_branches.yml
MyroTk Aug 10, 2023
64d21cd
Update release_branches.yml
MyroTk Aug 11, 2023
d3fbe03
retrigger
MyroTk Aug 16, 2023
ec1c343
Update release_branches.yml
MyroTk Aug 24, 2023
e5f6490
Update release_branches.yml
MyroTk Aug 24, 2023
6215331
Update release_branches.yml
MyroTk Aug 24, 2023
2e2d3ac
Update release_branches.yml
MyroTk Aug 29, 2023
fe5d41b
Update release_branches.yml
MyroTk Aug 30, 2023
98d7e84
Update ci-runner.py
MyroTk Aug 31, 2023
d02b46d
Update release_branches.yml
MyroTk Aug 31, 2023
839e58c
Update release_branches.yml
MyroTk Aug 31, 2023
763e036
Update release_branches.yml
MyroTk Sep 1, 2023
440ce15
Update release_branches.yml
MyroTk Sep 5, 2023
70ebe6b
Update release_branches.yml
MyroTk Sep 6, 2023
9fdcc64
Create action.yml
MyroTk Sep 6, 2023
041f53c
Add files via upload
MyroTk Sep 6, 2023
310010c
Update release_branches.yml
MyroTk Sep 6, 2023
ddd7d06
Update action.yml
MyroTk Sep 6, 2023
646f455
chmod
MyroTk Sep 6, 2023
dbf7641
Update release_branches.yml
MyroTk Sep 8, 2023
435b6b8
Update release_branches.yml
MyroTk Sep 12, 2023
db84892
Update release_branches.yml
MyroTk Sep 15, 2023
a62986b
Update release_branches.yml
MyroTk Sep 15, 2023
020542a
Update release_branches.yml
MyroTk Sep 15, 2023
82bc8ca
Update release_branches.yml
MyroTk Sep 15, 2023
5324f79
Delete .github/actions/submodule-checkout directory
MyroTk Sep 15, 2023
7d9f75b
Update release_branches.yml
MyroTk Sep 15, 2023
6dc7df3
Update release_branches.yml
MyroTk Sep 15, 2023
6a7e191
Fixes required for tests to work on Hetzner Cloud
ilejn Sep 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/retry.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/bash
# Execute command until exitcode is 0 or
# maximum number of retries is reached
# Example:
# ./retry <retries> <delay> <command>
retries=$1
delay=$2
command="${@:3}"
exitcode=0
try=0
until [ "$try" -ge $retries ]
do
echo "$command"
eval "$command"
exitcode=$?
if [ $exitcode -eq 0 ]; then
break
fi
try=$((try+1))
sleep $2
done
exit $exitcode
Loading