mirror of
				https://git.proxmox.com/git/mirror_zfs.git
				synced 2025-10-26 18:05:04 +03:00 
			
		
		
		
	Remove unused files from GitHub runners
Majority of the software installed by default in GitHub runners is irrelevant to OpenZFS. Reclaimed space could be used for more/bigger vdev files. File deletion happens in the background, leveraging `systemd-run` - the workflow is not significantly slowed down. Before ``` Filesystem Size Used Avail Use% Mounted on /dev/root 84G 53G 31G 63% / ``` After ``` Filesystem Size Used Avail Use% Mounted on /dev/root 84G 15G 70G 18% / ``` Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Signed-off-by: szubersk <szuberskidamian@gmail.com> Closes #13066
This commit is contained in:
		
							parent
							
								
									d7a67402a8
								
							
						
					
					
						commit
						e2909fae8f
					
				
							
								
								
									
										20
									
								
								.github/workflows/scripts/reclaim_disk_space.sh
									
									
									
									
										vendored
									
									
										Executable file
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/scripts/reclaim_disk_space.sh
									
									
									
									
										vendored
									
									
										Executable file
									
								
							| @ -0,0 +1,20 @@ | ||||
| #!/bin/sh | ||||
| 
 | ||||
| set -eu | ||||
| 
 | ||||
| # remove 4GiB of images | ||||
| sudo systemd-run docker system prune --force --all --volumes | ||||
| 
 | ||||
| # remove unused software | ||||
| sudo systemd-run rm -rf \ | ||||
|   "$AGENT_TOOLSDIRECTORY" \ | ||||
|   /opt/* \ | ||||
|   /usr/local/* \ | ||||
|   /usr/share/az* \ | ||||
|   /usr/share/dotnet \ | ||||
|   /usr/share/gradle* \ | ||||
|   /usr/share/miniconda \ | ||||
|   /usr/share/swift \ | ||||
|   /var/lib/gems \ | ||||
|   /var/lib/mysql \ | ||||
|   /var/lib/snapd | ||||
							
								
								
									
										12
									
								
								.github/workflows/zfs-tests-functional.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								.github/workflows/zfs-tests-functional.yml
									
									
									
									
										vendored
									
									
								
							| @ -15,6 +15,9 @@ jobs: | ||||
|     - uses: actions/checkout@v2 | ||||
|       with: | ||||
|         ref: ${{ github.event.pull_request.head.sha }} | ||||
|     - name: Reclaim disk space | ||||
|       run: | | ||||
|         ${{ github.workspace }}/.github/workflows/scripts/reclaim_disk_space.sh | ||||
|     - name: Install dependencies | ||||
|       run: | | ||||
|         sudo apt-get update | ||||
| @ -48,15 +51,12 @@ jobs: | ||||
|             sudo udevadm control --reload-rules | ||||
|           fi | ||||
|         fi | ||||
|         # Workaround to provide additional free space for testing. | ||||
|         #   https://github.com/actions/virtual-environments/issues/2840 | ||||
|         sudo rm -rf /usr/share/dotnet | ||||
|         sudo rm -rf /opt/ghc | ||||
|         sudo rm -rf "/usr/local/share/boost" | ||||
|         sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||||
|     - name: Clear the kernel ring buffer | ||||
|       run: | | ||||
|         sudo dmesg -c >/var/tmp/dmesg-prerun | ||||
|     - name: Report disk space | ||||
|       run: | | ||||
|         df -h / | ||||
|     - name: Tests | ||||
|       run: | | ||||
|         /usr/share/zfs/zfs-tests.sh -vR -s 3G | ||||
|  | ||||
							
								
								
									
										12
									
								
								.github/workflows/zfs-tests-sanity.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								.github/workflows/zfs-tests-sanity.yml
									
									
									
									
										vendored
									
									
								
							| @ -11,6 +11,9 @@ jobs: | ||||
|     - uses: actions/checkout@v2 | ||||
|       with: | ||||
|         ref: ${{ github.event.pull_request.head.sha }} | ||||
|     - name: Reclaim disk space | ||||
|       run: | | ||||
|         ${{ github.workspace }}/.github/workflows/scripts/reclaim_disk_space.sh | ||||
|     - name: Install dependencies | ||||
|       run: | | ||||
|         sudo apt-get update | ||||
| @ -44,15 +47,12 @@ jobs: | ||||
|             sudo udevadm control --reload-rules | ||||
|           fi | ||||
|         fi | ||||
|         # Workaround to provide additional free space for testing. | ||||
|         #   https://github.com/actions/virtual-environments/issues/2840 | ||||
|         sudo rm -rf /usr/share/dotnet | ||||
|         sudo rm -rf /opt/ghc | ||||
|         sudo rm -rf "/usr/local/share/boost" | ||||
|         sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||||
|     - name: Clear the kernel ring buffer | ||||
|       run: | | ||||
|         sudo dmesg -c >/var/tmp/dmesg-prerun | ||||
|     - name: Report disk space | ||||
|       run: | | ||||
|         df -h / | ||||
|     - name: Tests | ||||
|       run: | | ||||
|         /usr/share/zfs/zfs-tests.sh -vR -s 3G -r sanity | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Damian Szuberski
						Damian Szuberski