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.
sudo apt-get -y update
1 parent 166376d commit 1fdcadcCopy full SHA for 1fdcadc
.github/workflows/rust.yml
@@ -110,6 +110,12 @@ jobs:
110
- uses: actions/checkout@v4
111
- name: Install 32-bit target
112
run: rustup target add i686-unknown-linux-gnu
113
+ - name: Update install sources (for next step)
114
+ # To avoid problem
115
+ # E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
116
+ # See also this thread:
117
+ # https://github.com/actions/runner-images/issues/12599
118
+ run: sudo apt-get -y update
119
- name: Install 32-bit libs (for criterion)
120
# Criterion wants to compile something.
121
# Cargo builds criterion even when it is not required for those tests.
0 commit comments