mirror of
https://github.com/kennethreitz/herald.git
synced 2026-06-05 23:00:19 +00:00
49 lines
922 B
Go
49 lines
922 B
Go
package main
|
|
|
|
import "github.com/heroku/herald"
|
|
import "time"
|
|
import "log"
|
|
|
|
|
|
func main() {
|
|
|
|
for {
|
|
|
|
// Get a list of the buildpacks (as types).
|
|
buildpacks := herald.GetBuildpacks()
|
|
|
|
// Iterate over them.
|
|
for _, bp := range(buildpacks) {
|
|
|
|
// Download and extract each Buildpack.
|
|
path := bp.Download()
|
|
|
|
log.Printf("Buildpack '%s' downloaded to '%s'!", bp, path)
|
|
|
|
// Find all version executables for the given buildpack.
|
|
executables := bp.FindVersionScripts()
|
|
|
|
for _, exe := range(executables) {
|
|
|
|
log.Printf("Executing '%s:%s' script…", bp, exe)
|
|
|
|
// TODO: Ensure chmod for the executable.
|
|
exe.EnsureExecutable()
|
|
|
|
// Execute the executable, print the results.
|
|
results := exe.Execute()
|
|
|
|
// Log results.
|
|
log.Printf("%s:%s results: %s", bp, exe, results)
|
|
|
|
}
|
|
}
|
|
|
|
log.Print("Sleeping for 10 minutes…")
|
|
|
|
// Sleep for ten minutes.
|
|
time.Sleep(10*time.Minute)
|
|
|
|
}
|
|
|
|
} |