Skip to content

Commit 8a4444b

Browse files
committed
CI fix
1 parent 7176ab4 commit 8a4444b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/continous-integration.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,6 @@ jobs:
3232
- name: Checkout git repository 🕝
3333
uses: actions/checkout@v2
3434

35-
- name: Free disk space
36-
# tries to make sure we do not run out of disk space, see
37-
# https://github.community/t5/GitHub-Actions/BUG-Strange-quot-No-space-left-on-device-quot-IOExceptions-on/td-p/46101
38-
run: |
39-
sudo swapoff -a
40-
sudo rm -f /swapfile
41-
sudo apt clean
42-
docker rmi $(docker image ls -aq)
43-
df -h
44-
4535
- name: Setup Node 🦝
4636
uses: actions/setup-node@v1
4737
with:
@@ -187,6 +177,16 @@ jobs:
187177
- name: Checkout git repository 🕝
188178
uses: actions/checkout@v2
189179

180+
- name: Free disk space
181+
# tries to make sure we do not run out of disk space, see
182+
# https://github.community/t5/GitHub-Actions/BUG-Strange-quot-No-space-left-on-device-quot-IOExceptions-on/td-p/46101
183+
run: |
184+
sudo swapoff -a
185+
sudo rm -f /swapfile
186+
sudo apt clean
187+
docker rmi $(docker image ls -aq)
188+
df -h
189+
190190
- name: Login to DockerHub Registry 🔢
191191
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ env.DOCKERHUB_USERNAME }} --password-stdin || true
192192

0 commit comments

Comments
 (0)