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
11 changes: 8 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
- name: Install build dependencies (native)
if: matrix.use-qemu == false
run: |
sudo apt-get update
# Add retries to prevent transient Ubuntu mirror sync failures
sudo apt-get clean
sudo apt-get update -o Acquire::Retries=3
# Remove conflicting system packages
sudo apt-get remove -y libcupsfilters-dev libppd-dev || true
# Install comprehensive OpenPrinting dependency stack
Expand Down Expand Up @@ -128,7 +130,10 @@ jobs:
dockerRunArgs: |
--volume "${{ github.workspace }}:/workspace"
install: |
apt-get update
# Add retries to prevent transient Ubuntu mirror sync failures
apt-get clean
apt-get update -o Acquire::Retries=3

DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata
# Remove conflicting system packages
apt-get remove -y libcupsfilters-dev libppd-dev 2>/dev/null || true
Expand Down Expand Up @@ -196,4 +201,4 @@ jobs:
path: |
test-suite.log
**/*.log
if-no-files-found: ignore
if-no-files-found: ignore