Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Drop the Microsoft apt repository
# The hosted runner image ships a packages.microsoft.com source that
# this build needs nothing from. Its InRelease fetch fails now and then
# ("Clearsigned file isn't valid, got 'NOSPLIT'"), which aborts
# apt-get update and kills an otherwise healthy matrix job.
run: |
stale=$(grep -rlF packages.microsoft.com /etc/apt/sources.list.d \
2>/dev/null || true)
if [ -n "$stale" ]; then
echo "$stale" | xargs sudo rm -f
fi

- name: Install system Ruby
if: matrix.ruby == 'system'
run: |
Expand Down
Loading