ellapollack / juce-plugin-ci

DEPRECATED: Cross-platform CI for JUCE audio plugins with Github Actions
60 stars 12 forks source link

Fix 404 Not Found #2

Closed 9d7 closed 2 years ago

9d7 commented 2 years ago

Was getting this error in the Install JUCE Dependencies step of the Ubuntu build:

Fetched 4553 kB in 0s (9443 kB/s)
E: Failed to fetch http://azure.archive.ubuntu.com/ubuntu/pool/main/m/mesa/libegl-mesa0_21.0.3-0ubuntu0.2~20.04.1_amd64.deb  404  Not Found [IP: 52.154.174.208 80]
E: Failed to fetch http://azure.archive.ubuntu.com/ubuntu/pool/main/m/mesa/libgl1-mesa-dev_21.0.3-0ubuntu0.2~20.04.1_amd64.deb  404  Not Found [IP: 52.154.174.208 80]
E: Failed to fetch http://azure.archive.ubuntu.com/ubuntu/pool/main/m/mesa/libegl1-mesa-dev_21.0.3-0ubuntu0.2~20.04.1_amd64.deb  404  Not Found [IP: 52.154.174.208 80]
E: Failed to fetch http://azure.archive.ubuntu.com/ubuntu/pool/main/m/mesa/mesa-common-dev_21.0.3-0ubuntu0.2~20.04.1_amd64.deb  404  Not Found [IP: 52.154.174.208 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Error: Process completed with exit code 100.

This seems to be fixed by calling sudo apt-get update before installing dependencies.

ellapollack commented 2 years ago

Thank you for this fix! 😊