Skip to content

Commit

Permalink
revert: Remove disk space regression hack fix (#831)
Browse files Browse the repository at this point in the history
* Revert apt-get clean hack fix for disk space regression (now resolved)
   - c.f. actions/runner-images#709
  • Loading branch information
matthewfeickert authored Apr 22, 2020
1 parent 1633787 commit 1af0c98
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Free disk space
# WARNING: Needed due to GitHub Actions disk space regression on Linux runners
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get clean
df -h
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
Expand Down Expand Up @@ -76,11 +70,6 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Free disk space
# WARNING: Needed due to GitHub Actions disk space regression on Linux runners
run: |
sudo apt-get clean
df -h
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
Expand All @@ -103,11 +92,6 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Free disk space
# WARNING: Needed due to GitHub Actions disk space regression on Linux runners
run: |
sudo apt-get clean
df -h
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/release_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,6 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Free disk space
# WARNING: Needed due to GitHub Actions disk space regression on Linux runners
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get clean
df -h
- name: Install from PyPI
run: |
python -m pip install --upgrade pip setuptools wheel
Expand Down

0 comments on commit 1af0c98

Please sign in to comment.