BLD: Fix gitpod meson version #55331
Closed
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.
The issue is that meson is out of date in gitpod.
pip install --upgrade mesonThe above command fixes the issue, so I added it to the build instructions in gitpod.yml. It could be added to the dockerfile instead, but I decided to be cautious.
I added the update command to both the
initandcommandsections because gitpod sometimes skips theinitsection and goes straight to thecommandsection without installing anything.With the fix:
I'm running the tests in gitpod overnight and I'll check the log file in the morning.
Update:
These are the results:
661 failed, 211445 passed, 7990 skipped, 2426 xfailed, 15 xpassed, 405 warnings, 58 errors in 4524.22s (1:15:24)
The failed tests are the ones that interact with either S3 or a nonexistent SQL server, so I think everything works.