This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"flag" | |
"fmt" | |
"io" | |
"os" | |
"path" | |
"github.com/google/go-containerregistry/pkg/crane" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"os" | |
"strings" | |
"github.com/spf13/cobra" | |
"github.com/zclconf/go-cty/cty" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"os" | |
"strings" | |
"github.com/spf13/cobra" | |
"github.com/zclconf/go-cty/cty" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"os" | |
"github.com/hashicorp/hcl/v2" | |
"github.com/hashicorp/hcl/v2/gohcl" | |
"github.com/hashicorp/hcl/v2/hclsimple" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ( | |
"fmt" | |
"os" | |
"github.com/hashicorp/hcl/v2" | |
"github.com/hashicorp/hcl/v2/gohcl" | |
"github.com/hashicorp/hcl/v2/hclsimple" | |
) | |
var ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Runner interface { | |
Run() error | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Config struct { | |
Tasks []*Task `hcl:"task,block"` | |
} | |
type Task struct { | |
Name string `hcl:"name,label"` | |
Steps []*Step `hcl:"step,block"` | |
} | |
type Step struct { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task "first_task" { | |
step "mkdir" "build_dir" { | |
path = "./build/" | |
} | |
step "exec" "list_build_dir" { | |
command = "ls ./build/" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Task struct { | |
Name string `hcl:"name,label"` | |
ExecSteps []*ExecStep `hcl:"exec,block"` | |
MkdirStep []*MkdirStep `hcl:"mkdir,block"` | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task "first_task" { | |
mkdir "build_dir" { | |
path = "./build" | |
} | |
exec "list_var_dir" { | |
command = "ls /var" | |
} | |
} |
NewerOlder