Skip to content

Commit 9865db7

Browse files
authored
Integrate "Free disk space" steps into unit tests (#7635)
This resolves the 'no space left on device' error in the tests.
1 parent a758387 commit 9865db7

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/ci-test.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v4
3131

32+
- name: Free Disk Space (Ubuntu)
33+
uses: jlumbroso/free-disk-space@main
34+
with:
35+
tool-cache: false
36+
android: true
37+
dotnet: true
38+
haskell: true
39+
large-packages: false
40+
docker-images: true
41+
swap-storage: true
42+
3243
- name: Set up Python ${{ matrix.python-version }}
3344
uses: actions/setup-python@v5
3445
with:
@@ -50,7 +61,7 @@ jobs:
5061

5162
- name: Install dependencies
5263
run: |
53-
python -m pip install --upgrade pip wheel
64+
python -m pip install --upgrade pip wheel setuptools
5465
# TODO(b/232490018): Cython need to be installed separately to build pycocotools.
5566
python -m pip install Cython -c ./test_constraints.txt
5667
pip install \

0 commit comments

Comments
 (0)