mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/cache
				synced 2025-10-30 23:21:05 +08:00 
			
		
		
		
	Increase cache limit to 5 GBs (#168)
* Increase cache limit to 5 GBs * Fix test to use new size limit * Update src/save.ts Co-Authored-By: Josh Gross <joshmgross@github.com> Co-authored-by: Josh Gross <joshmgross@github.com>
This commit is contained in:
		
							parent
							
								
									23e301d35c
								
							
						
					
					
						commit
						f9c9166ecb
					
				| @ -194,7 +194,7 @@ test("save with large cache outputs warning", async () => { | ||||
| 
 | ||||
|     const createTarMock = jest.spyOn(tar, "createTar"); | ||||
| 
 | ||||
|     const cacheSize = 4 * 1024 * 1024 * 1024; //~4GB, over the 2GB limit
 | ||||
|     const cacheSize = 6 * 1024 * 1024 * 1024; //~6GB, over the 5GB limit
 | ||||
|     jest.spyOn(actionUtils, "getArchiveFileSize").mockImplementationOnce(() => { | ||||
|         return cacheSize; | ||||
|     }); | ||||
| @ -208,7 +208,7 @@ test("save with large cache outputs warning", async () => { | ||||
| 
 | ||||
|     expect(logWarningMock).toHaveBeenCalledTimes(1); | ||||
|     expect(logWarningMock).toHaveBeenCalledWith( | ||||
|         "Cache size of ~4096 MB (4294967296 B) is over the 2GB limit, not saving cache." | ||||
|         "Cache size of ~6144 MB (6442450944 B) is over the 5GB limit, not saving cache." | ||||
|     ); | ||||
| 
 | ||||
|     expect(failedMock).toHaveBeenCalledTimes(0); | ||||
|  | ||||
| @ -56,14 +56,14 @@ async function run(): Promise<void> { | ||||
| 
 | ||||
|         await createTar(archivePath, cachePath); | ||||
| 
 | ||||
|         const fileSizeLimit = 2 * 1024 * 1024 * 1024; // 2GB per repo limit
 | ||||
|         const fileSizeLimit = 5 * 1024 * 1024 * 1024; // 5GB per repo limit
 | ||||
|         const archiveFileSize = utils.getArchiveFileSize(archivePath); | ||||
|         core.debug(`File Size: ${archiveFileSize}`); | ||||
|         if (archiveFileSize > fileSizeLimit) { | ||||
|             utils.logWarning( | ||||
|                 `Cache size of ~${Math.round( | ||||
|                     archiveFileSize / (1024 * 1024) | ||||
|                 )} MB (${archiveFileSize} B) is over the 2GB limit, not saving cache.` | ||||
|                 )} MB (${archiveFileSize} B) is over the 5GB limit, not saving cache.` | ||||
|             ); | ||||
|             return; | ||||
|         } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 David Hadka
						David Hadka