github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/helper/testtask/testtask_windows.go (about)

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