mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
33 lines
694 B
Go
33 lines
694 B
Go
package db_lib
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/ansible-semaphore/semaphore/pkg/task_logger"
|
|
"github.com/ansible-semaphore/semaphore/util"
|
|
)
|
|
|
|
func getEnvironmentVars() []string {
|
|
res := []string{}
|
|
|
|
for _, e := range util.Config.ForwardedEnvVars {
|
|
v := os.Getenv(e)
|
|
if v != "" {
|
|
res = append(res, fmt.Sprintf("%s=%s", e, v))
|
|
}
|
|
}
|
|
|
|
for k, v := range util.Config.EnvVars {
|
|
res = append(res, fmt.Sprintf("%s=%s", k, v))
|
|
}
|
|
|
|
return res
|
|
}
|
|
|
|
type LocalApp interface {
|
|
SetLogger(logger task_logger.Logger) task_logger.Logger
|
|
InstallRequirements(environmentVars *[]string) error
|
|
Run(args []string, environmentVars *[]string, inputs map[string]string, cb func(*os.Process)) error
|
|
}
|