Skip to content

Commit

Permalink
Merge pull request #44 from PHPCSStandards/feature/ghactions-xmllint-…
Browse files Browse the repository at this point in the history
…bypass-apt-get-update

GH Actions: work around intermittent apt-get errors
  • Loading branch information
jrfnl committed Apr 24, 2024
2 parents 4a22001 + c0e791f commit 5fa83bc
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,15 @@ jobs:
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress

- name: Setup xmllint
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y libxml2-utils
# 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 install --no-install-recommends -y libxml2-utils

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

0 comments on commit 5fa83bc

Please sign in to comment.