mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 01:53:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package workers
 | 
						|
 | 
						|
import (
 | 
						|
	"os"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/moby/buildkit/util/testutil/integration"
 | 
						|
)
 | 
						|
 | 
						|
type backend struct {
 | 
						|
	builder             string
 | 
						|
	context             string
 | 
						|
	unsupportedFeatures []string
 | 
						|
}
 | 
						|
 | 
						|
var _ integration.Backend = &backend{}
 | 
						|
 | 
						|
func (s *backend) Address() string {
 | 
						|
	return s.builder
 | 
						|
}
 | 
						|
 | 
						|
func (s *backend) DockerAddress() string {
 | 
						|
	return s.context
 | 
						|
}
 | 
						|
 | 
						|
func (s *backend) ContainerdAddress() string {
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (s *backend) Snapshotter() string {
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (s *backend) Rootless() bool {
 | 
						|
	return false
 | 
						|
}
 | 
						|
 | 
						|
func (s backend) Supports(feature string) bool {
 | 
						|
	if enabledFeatures := os.Getenv("BUILDKIT_TEST_ENABLE_FEATURES"); enabledFeatures != "" {
 | 
						|
		for _, enabledFeature := range strings.Split(enabledFeatures, ",") {
 | 
						|
			if feature == enabledFeature {
 | 
						|
				return true
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if disabledFeatures := os.Getenv("BUILDKIT_TEST_DISABLE_FEATURES"); disabledFeatures != "" {
 | 
						|
		for _, disabledFeature := range strings.Split(disabledFeatures, ",") {
 | 
						|
			if feature == disabledFeature {
 | 
						|
				return false
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	for _, unsupportedFeature := range s.unsupportedFeatures {
 | 
						|
		if feature == unsupportedFeature {
 | 
						|
			return false
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return true
 | 
						|
}
 |