mirror of
				https://github.com/actions/cache.git
				synced 2025-10-31 11:48:38 +08:00 
			
		
		
		
	Fix example for Bazel
This commit is contained in:
		
							parent
							
								
									4b381be638
								
							
						
					
					
						commit
						ef11f54eee
					
				
							
								
								
									
										16
									
								
								examples.md
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								examples.md
									
									
									
									
									
								
							|  | @ -661,14 +661,18 @@ steps: | ||||||
| 
 | 
 | ||||||
| ## * - Bazel | ## * - Bazel | ||||||
| 
 | 
 | ||||||
| Bazel cache has a good handle to check if cached content should be rebuild or not based on its inputs like a hash(command + files). So using the latest cache of the branch is enough, no need to suffix with `hashFiles('**/...')`. |  | ||||||
| 
 |  | ||||||
| ```yaml | ```yaml | ||||||
| - name: Cache Bazel | - name: Cache Bazel | ||||||
|   uses: actions/cache@v2 |   uses: actions/cache@v3 | ||||||
|   with: |   with: | ||||||
|     path: | |     path: | | ||||||
|       ~/.cache/bazelisk |       ~/.cache/bazel # Linux | ||||||
|       ~/.cache/bazel |       /private/var/tmp/_bazel_runner/ # macOS | ||||||
|     key: ${{ runner.os }}-bazel |       # TODO Add Windows if you know where it is, based on https://bazel.build/remote/output-directories | ||||||
|  |     key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel') }} | ||||||
|  |     restore-keys: | | ||||||
|  |       ${{ runner.os }}-bazel- | ||||||
|  | - run: bazelisk test //... | ||||||
| ``` | ``` | ||||||
|  | 
 | ||||||
|  | [`bazelisk`](https://github.com/bazelbuild/bazelisk) does not have be to separately downloaded and installed because it's already included in GitHub's `ubuntu-latest` base image. | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Michael Vorburger
						Michael Vorburger