-
Notifications
You must be signed in to change notification settings - Fork 234
Fix apt 404s in Docker #117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Ohh this makes sense. I have seen these 404 errors locally. @bors r+ |
📌 Commit ba7df31 has been approved by |
Fix apt 404s in Docker `apt update` and `apt install` should be in the same Docker RUN statement, otherwise `apt update` will be cached and `apt install` will 404 if a package no longer exists.
`apt update` and `apt install` should be in the same Docker RUN statement, otherwise `apt update` will be cached and `apt install` will 404 if a package no longer exists.
ba7df31
to
2a8cca0
Compare
Forgot a backslash, but the other two travis failures don't look relavent. |
qemu-user-static | ||
RUN apt-get install -y --no-install-recommends qemu-system-mips | ||
qemu-user-static \ | ||
apt-get install -y --no-install-recommends qemu-system-mips |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs a &&
between the qemu-user-static
and the apt-get
.
@bors r+ |
📌 Commit e2fc5a0 has been approved by |
Fix apt 404s in Docker `apt update` and `apt install` should be in the same Docker RUN statement, otherwise `apt update` will be cached and `apt install` will 404 if a package no longer exists.
💥 Test timed out |
Tests passed. Merging. |
117: implement cosh r=japaric a=kirch7 `cosh(f64)` implemented. I had to implement `__expo2(f64)` also. Co-authored-by: Cássio Kirch <[email protected]> Co-authored-by: Jorge Aparicio <[email protected]>
apt update
andapt install
should be in the same Docker RUN statement, otherwiseapt update
will be cached andapt install
will 404 if a package no longer exists.