mirror of
				https://github.com/gradle/gradle-build-action.git
				synced 2025-11-04 09:58:56 +08:00 
			
		
		
		
	Minor improvement to logging in post-action
- Ensure that "Caching Gradle state" group always has 1 message - Only print cache report when entries were restored or saved
This commit is contained in:
		
							
								
								
									
										2
									
								
								dist/main/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/main/index.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/main/index.js.map
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/main/index.js.map
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/post/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/post/index.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										2
									
								
								dist/post/index.js.map
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/post/index.js.map
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -185,7 +185,7 @@ export abstract class AbstractCache {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    async save(listener: CacheListener): Promise<void> {
 | 
					    async save(listener: CacheListener): Promise<void> {
 | 
				
			||||||
        if (!this.cacheOutputExists()) {
 | 
					        if (!this.cacheOutputExists()) {
 | 
				
			||||||
            this.debug(`No ${this.cacheDescription} to cache.`)
 | 
					            core.info(`No ${this.cacheDescription} to cache.`)
 | 
				
			||||||
            return
 | 
					            return
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -193,7 +193,7 @@ export abstract class AbstractCache {
 | 
				
			|||||||
        const cacheResult = core.getState(this.cacheResultStateKey)
 | 
					        const cacheResult = core.getState(this.cacheResultStateKey)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (!cacheKey) {
 | 
					        if (!cacheKey) {
 | 
				
			||||||
            this.debug(`${this.cacheDescription} existed prior to cache restore. Not saving.`)
 | 
					            core.info(`${this.cacheDescription} existed prior to cache restore. Not saving.`)
 | 
				
			||||||
            return
 | 
					            return
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -54,6 +54,10 @@ export async function save(): Promise<void> {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function logCachingReport(listener: CacheListener): void {
 | 
					function logCachingReport(listener: CacheListener): void {
 | 
				
			||||||
 | 
					    if (listener.cacheEntries.length === 0) {
 | 
				
			||||||
 | 
					        return
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    core.info(`---------- Caching Summary -------------
 | 
					    core.info(`---------- Caching Summary -------------
 | 
				
			||||||
Restored Entries Count: ${getCount(listener.cacheEntries, e => e.restoredSize)}
 | 
					Restored Entries Count: ${getCount(listener.cacheEntries, e => e.restoredSize)}
 | 
				
			||||||
                  Size: ${getSum(listener.cacheEntries, e => e.restoredSize)}
 | 
					                  Size: ${getSum(listener.cacheEntries, e => e.restoredSize)}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user