Environment variables exported. added examples/scorsh_script.sh

lint-refactor
KatolaZ 8 years ago
parent 7a4cdc99d9
commit 001bcbdbff
  1. 10
      examples/scorsh_script.sh
  2. 2
      examples/worker1/worker1.cfg
  3. 19
      exec.go

@ -0,0 +1,10 @@
#!/bin/sh
echo "SCORSH_REPO:" ${SCORSH_REPO}
echo "SCORSH_BRANCH:" ${SCORSH_BRANCH}
echo "SCORSH_OLDREV:" ${SCORSH_OLDREV}
echo "SCORSH_NEWREV:" ${SCORSH_NEWREV}
echo "SCORSH_ID:" ${SCORSH_ID}
echo "I am running!!!!" >> log.txt

@ -25,7 +25,7 @@ w_tags:
t_keyrings: ["allowed_users.asc"],
t_commands: [
{
c_url: "file:///home/katolaz/bin/scorsh_build.sh"
c_url: "file:///home/katolaz/bin/scorsh_script.sh"
}
]
}

@ -1,6 +1,7 @@
package main
import (
"bufio"
"fmt"
"log"
"net/url"
@ -19,17 +20,15 @@ func exec_local_file(cmd_url *url.URL, args, env []string) error {
}
if err == nil {
err = cmd.Start()
if err == nil {
var output []byte
_, err := stdout.Read(output)
if err != nil {
log.Printf("[%s - stout follows: ]\n%s\n", output)
err = cmd.Wait()
if err = cmd.Start(); err == nil {
buff := bufio.NewScanner(stdout)
log.Printf("[%s - stout follows: ]\n", cmd.Path)
for buff.Scan() {
log.Printf(buff.Text()) // write each line to your log, or anything you need
}
err = cmd.Wait()
}
}
return err
}
@ -65,7 +64,7 @@ func set_environment(msg *SCORSHmsg) []string {
env = append(env, fmt.Sprintf("SCORSH_REPO=%s", msg.Repo))
env = append(env, fmt.Sprintf("SCORSH_BRANCH=%s", msg.Branch))
env = append(env, fmt.Sprintf("SCORSH_OLDREV=%s", msg.Old_rev))
env = append(env, fmt.Sprintf("SCORSH_NEWREV_=%s", msg.New_rev))
env = append(env, fmt.Sprintf("SCORSH_ID_=%s", msg.Id))
env = append(env, fmt.Sprintf("SCORSH_NEWREV=%s", msg.New_rev))
env = append(env, fmt.Sprintf("SCORSH_ID=%s", msg.Id))
return env
}

Loading…
Cancel
Save