Skip to content

Commit

Permalink
Merge pull request #818 from Automattic/feature/ghactions-xmllint-byp…
Browse files Browse the repository at this point in the history
…ass-apt-get-update

GH Actions: work around intermittent apt-get errors
  • Loading branch information
GaryJones authored Apr 24, 2024
2 parents 7d3768c + f60ed12 commit 463dc53
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/basics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,15 @@ jobs:
coverage: none
tools: cs2pr

# Updating the lists can fail intermittently, typically after Microsoft has released a new package.
# This should not be blocking for this job, so ignore any errors from this step.
# Ref: https://github.com/dotnet/core/issues/4167
- name: Update the available packages list
continue-on-error: true
run: sudo apt-get update

- name: Install xmllint
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y libxml2-utils
run: sudo apt-get install --no-install-recommends -y libxml2-utils

# Show XML violations inline in the file diff.
# @link https://github.com/marketplace/actions/xmllint-problem-matcher
Expand Down

0 comments on commit 463dc53

Please sign in to comment.