Drop the Chrome apt source before installing Linux dependencies - #220
Open
shreeve wants to merge 1 commit into
Open
Drop the Chrome apt source before installing Linux dependencies#220shreeve wants to merge 1 commit into
shreeve wants to merge 1 commit into
Conversation
GitHub's Ubuntu runner image enables Google's Chrome apt repository. Its mirror intermittently serves a Packages index that fails the hash check against the release file, and apt-get update then exits 100 and fails the job before anything of ours has run: E: Failed to fetch https://dl.google.com/linux/chrome-stable/deb/ dists/stable/main/binary-amd64/Packages.gz Hash Sum mismatch Nothing in these jobs needs Chrome, so remove the source list before updating instead of depending on it.
3 tasks
Contributor
Author
|
This one is blocking every Ubuntu job on GitHub-hosted runners... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Every Ubuntu job on GitHub-hosted runners has been failing in "Install Linux dependencies" before any Rust runs:
The runner image enables Google's Chrome apt repository, and its mirror intermittently serves a
Packagesindex that does not match the release file.apt-get updatethen exits 100 and fails the job. Two consecutive runs of #219 hit it (https://github.com/egoist/waku/actions/runs/34383640369, https://github.com/egoist/waku/actions/runs/34384018344).Nothing in these jobs needs Chrome, so this removes the source list before
apt-get updatein the test workflow and in both Linux release jobs.Test plan