10 lines
		
	
	
		
			330 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			330 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
| #!/bin/bash -e
 | |
| 
 | |
| # GitHub Actions runners have only provide 14 GB of disk space which we have been exceeding regularly
 | |
| # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
 | |
| 
 | |
| df -h
 | |
| sudo rm -rf /usr/local/lib/android
 | |
| sudo rm -rf /usr/share/dotnet
 | |
| df -h
 |