mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
94c07441c2
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
(cherry picked from commit 611eb6ffb3
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
938 B
Go
31 lines
938 B
Go
package buildkit
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/docker/docker/daemon/config"
|
|
"github.com/docker/docker/pkg/idtools"
|
|
"github.com/docker/libnetwork"
|
|
"github.com/moby/buildkit/executor"
|
|
"github.com/moby/buildkit/executor/oci"
|
|
)
|
|
|
|
func newExecutor(_, _ string, _ libnetwork.NetworkController, _ *oci.DNSConfig, _ bool, _ *idtools.IdentityMapping, _ string) (executor.Executor, error) {
|
|
return &winExecutor{}, nil
|
|
}
|
|
|
|
type winExecutor struct {
|
|
}
|
|
|
|
func (w *winExecutor) Run(ctx context.Context, id string, root executor.Mount, mounts []executor.Mount, process executor.ProcessInfo, started chan<- struct{}) (err error) {
|
|
return errors.New("buildkit executor not implemented for windows")
|
|
}
|
|
|
|
func (w *winExecutor) Exec(ctx context.Context, id string, process executor.ProcessInfo) error {
|
|
return errors.New("buildkit executor not implemented for windows")
|
|
}
|
|
|
|
func getDNSConfig(config.DNSConfig) *oci.DNSConfig {
|
|
return nil
|
|
}
|