mirror of
				https://github.com/docker/setup-buildx-action.git
				synced 2025-11-02 21:34:18 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			935 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			935 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
group "default" {
 | 
						|
  targets = ["build"]
 | 
						|
}
 | 
						|
 | 
						|
group "pre-checkin" {
 | 
						|
  targets = ["vendor-update", "format", "build"]
 | 
						|
}
 | 
						|
 | 
						|
group "validate" {
 | 
						|
  targets = ["lint", "build-validate", "vendor-validate"]
 | 
						|
}
 | 
						|
 | 
						|
target "build" {
 | 
						|
  dockerfile = "dev.Dockerfile"
 | 
						|
  target = "build-update"
 | 
						|
  output = ["."]
 | 
						|
}
 | 
						|
 | 
						|
target "build-validate" {
 | 
						|
  dockerfile = "dev.Dockerfile"
 | 
						|
  target = "build-validate"
 | 
						|
  output = ["type=cacheonly"]
 | 
						|
}
 | 
						|
 | 
						|
target "format" {
 | 
						|
  dockerfile = "dev.Dockerfile"
 | 
						|
  target = "format-update"
 | 
						|
  output = ["."]
 | 
						|
}
 | 
						|
 | 
						|
target "lint" {
 | 
						|
  dockerfile = "dev.Dockerfile"
 | 
						|
  target = "lint"
 | 
						|
  output = ["type=cacheonly"]
 | 
						|
}
 | 
						|
 | 
						|
target "vendor-update" {
 | 
						|
  dockerfile = "dev.Dockerfile"
 | 
						|
  target = "vendor-update"
 | 
						|
  output = ["."]
 | 
						|
}
 | 
						|
 | 
						|
target "vendor-validate" {
 | 
						|
  dockerfile = "dev.Dockerfile"
 | 
						|
  target = "vendor-validate"
 | 
						|
  output = ["type=cacheonly"]
 | 
						|
}
 | 
						|
 | 
						|
target "test" {
 | 
						|
  dockerfile = "dev.Dockerfile"
 | 
						|
  target = "test-coverage"
 | 
						|
  output = ["./coverage"]
 | 
						|
}
 |