We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f4c3fe commit ffb292fCopy full SHA for ffb292f
1 file changed
.github/workflows/build.yml
@@ -29,7 +29,10 @@ jobs:
29
if: contains(matrix.os, 'ubuntu')
30
run: |
31
sudo rm -rf /var/lib/apt/lists/*
32
- sudo apt-get update
+ echo "Acquire::http::Pipeline-Depth 0;" | sudo tee /etc/apt/apt.conf.d/99custom
33
+ echo "Acquire::http::No-Cache true;" | sudo tee -a /etc/apt/apt.conf.d/99custom
34
+ echo "Acquire::BrokenProxy true;" | sudo tee -a /etc/apt/apt.conf.d/99custom
35
+ sudo apt-get update || (sleep 10; sudo apt-get update)
36
sudo apt-get install -y libgles2-mesa-dev
37
38
- name: Build and Package
0 commit comments