Fix CI failures: Update DevStack and add disk space cleanup for Ubuntu 24.04 #34
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CI builds failing on Ubuntu 24.04 due to multiple issues including setuptools missing the
packagingdependency, MariaDB database creation problems, and disk space exhaustion during Docker builds.Changes
DEVSTACK_COMMITin both Dockerfiles from608ae718f(March 2025) toa05d26ebc(December 2025)setuptools[core]instead ofsetuptools(upstream commit 320c2bf)jlumbroso/free-disk-space@v1.3.1action in GitHub Actions workflow to reclaim up to 31 GB of disk space by removing Android SDK, .NET runtime, Haskell tools, large packages, unused Docker images, and swap storageTechnical Details
The original commit had a future date (March 2025), which meant the initial fix attempt using an older commit (December 2024) actually moved backwards in git history, causing regressions including the
nova_apidatabase error. The latest commit properly includes all necessary fixes for Ubuntu 24.04 compatibility.The setuptools fix resolves a known issue where recent setuptools versions require explicit installation of the
coreextra to pull in compatiblepackagingversions.The disk space cleanup addresses "no space left on device" errors that occurred during Docker image builds on GitHub Actions runners, which have limited disk space (~14 GB free). The free-disk-space action is pinned to v1.3.1 for reproducible and stable builds.
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.