Skip to content
Closed
Changes from all commits
Commits
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
24 changes: 20 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ jobs:
shell: bash -l {0}
run: |
export GIT_SSL_NO_VERIFY=1
git submodule update --init --recursive
for i in 1 2 3 4 5; do
git submodule update --init --recursive && break
echo "Retry $i"
sleep 30
done
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -79,7 +83,11 @@ jobs:
else
export GIT_SSL_NO_VERIFY=1
fi
git submodule update --init --recursive
for i in 1 2 3 4 5; do
git submodule update --init --recursive && break
echo "Retry $i"
sleep 30
done
- uses: ./.github/workflows/actions_build
with:
os: ${{ matrix.os }}
Expand Down Expand Up @@ -116,7 +124,11 @@ jobs:
else
export GIT_SSL_NO_VERIFY=1
fi
git submodule update --init --recursive
for i in 1 2 3 4 5; do
git submodule update --init --recursive && break
echo "Retry $i"
sleep 30
done
- uses: ./.github/workflows/actions_build
with:
os: ${{ matrix.os }}
Expand All @@ -142,7 +154,11 @@ jobs:
shell: bash -l {0}
run: |
export GIT_SSL_NO_VERIFY=1
git submodule update --init --recursive
for i in 1 2 3 4 5; do
git submodule update --init --recursive && break
echo "Retry $i"
sleep 30
done
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand Down
Loading