We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 205a287 commit 76ed887Copy full SHA for 76ed887
.github/workflows/ci.yml
@@ -73,7 +73,10 @@ jobs:
73
sudo bash -c "echo 'https://ports.ubuntu.com/ priority:4' >> /etc/apt/apt-mirrors.txt"
74
# Add architecture
75
sudo dpkg --add-architecture ${{ matrix.multiarch }}
76
- sudo apt update
+ # Ubuntu Ports often has outdated mirrors so try a few times to get the apt repo
77
+ for TRY in $(seq 3); do
78
+ { sudo apt update && break; } || sleep 30
79
+ done
80
# Install needed packages
81
sudo apt install $(echo "libatomic1: zlib1g-dev:" | sed 's/:/:${{ matrix.multiarch }}/g')
82
- uses: ./.github/workflows/setup
0 commit comments