Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit e2210cb

Browse files
authored
test: Fix provisioning tests by not trying to remove google-cloud-sdk (#1190)
We're seeing intermittent provisioning failures with this message: ``` No apt package "google-cloud-sdk", but there is a snap with that name. Try "snap install google-cloud-sdk" E: Unable to locate package google-cloud-sdk Error: Process completed with exit code 100. ``` I couldn't figure out why, but all we care about is that there's enough disk space, so it's probably fine to just not bother with trying to remove it.
1 parent d776687 commit e2210cb

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/provisioning-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ jobs:
5151
docker compose --version
5252
5353
- name: free up disk space
54-
run: sudo apt remove --purge -y ghc-* azure-cli google-cloud-sdk hhvm llvm-* dotnet-* powershell mono-* php* ruby*
54+
# 2023-09-28: google-cloud-sdk removed from this list because it was intermittently
55+
# unavailable as an apt package to remove, and might be migrating to snap. If more
56+
# disk space is needed, see if the snap is installed, and remove that.
57+
run: sudo apt remove --purge -y ghc-* azure-cli hhvm llvm-* dotnet-* powershell mono-* php* ruby*
5558

5659
- name: set up requirements
5760
run: make requirements

0 commit comments

Comments
 (0)