github.com/banmanh482/nomad@v0.11.8/helper/testtask/testtask_windows.go (about)

     1  // +build windows
     2  
     3  package testtask
     4  
     5  import (
     6  	"fmt"
     7  	"os"
     8  )
     9  
    10  func executeProcessGroup(gid string) {
    11  	fmt.Fprintf(os.Stderr, "TODO: implement process groups are on windows\n")
    12  	fmt.Fprintf(os.Stderr, "TODO: see https://github.com/hashicorp/nomad/blob/109c5ef650206fc62334d202002cda92ceb67399/drivers/shared/executor/executor_windows.go#L9-L17\n")
    13  	os.Exit(1)
    14  }