2018-05-15 22:21:08 +00:00
|
|
|
package buildkit
|
|
|
|
|
|
|
|
import (
|
2018-05-25 15:18:44 -07:00
|
|
|
"context"
|
2018-05-15 22:21:08 +00:00
|
|
|
"errors"
|
|
|
|
|
2019-06-06 01:36:33 +00:00
|
|
|
"github.com/docker/docker/daemon/config"
|
2021-04-06 00:24:47 +00:00
|
|
|
"github.com/docker/docker/libnetwork"
|
2021-05-28 00:15:56 +00:00
|
|
|
"github.com/docker/docker/pkg/idtools"
|
2018-05-15 22:21:08 +00:00
|
|
|
"github.com/moby/buildkit/executor"
|
2019-06-06 01:36:33 +00:00
|
|
|
"github.com/moby/buildkit/executor/oci"
|
2018-05-15 22:21:08 +00:00
|
|
|
)
|
|
|
|
|
2022-03-14 15:24:29 -04:00
|
|
|
func newExecutor(_, _ string, _ libnetwork.NetworkController, _ *oci.DNSConfig, _ bool, _ idtools.IdentityMapping, _ string) (executor.Executor, error) {
|
2018-05-25 15:18:44 -07:00
|
|
|
return &winExecutor{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type winExecutor struct {
|
|
|
|
}
|
|
|
|
|
2020-11-13 02:14:57 +00:00
|
|
|
func (w *winExecutor) Run(ctx context.Context, id string, root executor.Mount, mounts []executor.Mount, process executor.ProcessInfo, started chan<- struct{}) (err error) {
|
2020-07-19 22:18:46 -07:00
|
|
|
return errors.New("buildkit executor not implemented for windows")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *winExecutor) Exec(ctx context.Context, id string, process executor.ProcessInfo) error {
|
2018-05-25 15:18:44 -07:00
|
|
|
return errors.New("buildkit executor not implemented for windows")
|
2018-05-15 22:21:08 +00:00
|
|
|
}
|
2019-06-06 01:36:33 +00:00
|
|
|
|
|
|
|
func getDNSConfig(config.DNSConfig) *oci.DNSConfig {
|
|
|
|
return nil
|
|
|
|
}
|