Spaces:
Runtime error
Runtime error
jhj0517 commited on
Commit ·
edfc646
1
Parent(s): 235513d
Clean up spaces for action
Browse files
.github/workflows/ci-shell.yml
CHANGED
|
@@ -20,6 +20,9 @@ jobs:
|
|
| 20 |
- name: 'Checkout GitHub Action'
|
| 21 |
uses: actions/checkout@v3
|
| 22 |
|
|
|
|
|
|
|
|
|
|
| 23 |
- name: Setup Python ${{ env.PYTHON_VERSION }} Environment
|
| 24 |
uses: actions/setup-python@v4
|
| 25 |
with:
|
|
|
|
| 20 |
- name: 'Checkout GitHub Action'
|
| 21 |
uses: actions/checkout@v3
|
| 22 |
|
| 23 |
+
- name: Clean up space for action
|
| 24 |
+
run: rm -rf /opt/hostedtoolcache
|
| 25 |
+
|
| 26 |
- name: Setup Python ${{ env.PYTHON_VERSION }} Environment
|
| 27 |
uses: actions/setup-python@v4
|
| 28 |
with:
|
.github/workflows/ci.yml
CHANGED
|
@@ -25,6 +25,9 @@ jobs:
|
|
| 25 |
with:
|
| 26 |
python-version: ${{ matrix.python }}
|
| 27 |
|
|
|
|
|
|
|
|
|
|
| 28 |
- name: Install git and ffmpeg
|
| 29 |
run: sudo apt-get update && sudo apt-get install -y git ffmpeg
|
| 30 |
|
|
|
|
| 25 |
with:
|
| 26 |
python-version: ${{ matrix.python }}
|
| 27 |
|
| 28 |
+
- name: Clean up space for action
|
| 29 |
+
run: rm -rf /opt/hostedtoolcache
|
| 30 |
+
|
| 31 |
- name: Install git and ffmpeg
|
| 32 |
run: sudo apt-get update && sudo apt-get install -y git ffmpeg
|
| 33 |
|