forge

package
v1.13.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 2, 2025 License: MIT Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const StandardVersion = "v1.3.1"

StandardVersion is the Foundry version that op-deployer will download if it's not found on PATH.

Variables

This section is empty.

Functions

This section is empty.

Types

type Bin

type Bin struct {
	// contains filtered or unexported fields
}

func (*Bin) Ensure

func (b *Bin) Ensure(ctx context.Context) error

func (*Bin) Path

func (b *Bin) Path() string

type Binary

type Binary interface {
	Ensure(ctx context.Context) error
	Path() string
}

func PathBinary

func PathBinary() Binary

func StaticBinary

func StaticBinary(path string) Binary

type Client

type Client struct {
	Binary Binary
	Stdout io.Writer
	Stderr io.Writer
	Wd     string
}

func NewClient

func NewClient(binary Binary) *Client

func (*Client) Build

func (c *Client) Build(ctx context.Context, opts ...string) error

func (*Client) Clean

func (c *Client) Clean(ctx context.Context, opts ...string) error

func (*Client) RunScript

func (c *Client) RunScript(ctx context.Context, script string, sig string, args []byte, opts ...string) (string, error)

func (*Client) Version

func (c *Client) Version(ctx context.Context) (VersionInfo, error)

type PathBin

type PathBin struct {
	// contains filtered or unexported fields
}

func (*PathBin) Ensure

func (b *PathBin) Ensure(ctx context.Context) error

func (*PathBin) Path

func (b *PathBin) Path() string

type ScriptCallDecoder

type ScriptCallDecoder[O any] interface {
	Decode(raw []byte) (O, error)
}

type ScriptCallEncoder

type ScriptCallEncoder[I any] interface {
	Encode(I) ([]byte, error)
}

type ScriptCaller

type ScriptCaller[I any, O any] func(ctx context.Context, input I, opts ...string) (O, bool, error)

func NewScriptCaller

func NewScriptCaller[I any, O any](client *Client, script string, sig string, encoder ScriptCallEncoder[I], decoder ScriptCallDecoder[O]) ScriptCaller[I, O]

type StandardBin

type StandardBin struct {
	// contains filtered or unexported fields
}

StandardBin forces the use of the standard forge binary version by first checking for the version locally, then downloading from github if needed

func NewStandardBinary

func NewStandardBinary(opts ...StandardBinOpt) (*StandardBin, error)

func (*StandardBin) Ensure

func (b *StandardBin) Ensure(ctx context.Context) error

func (*StandardBin) Path

func (b *StandardBin) Path() string

type StandardBinOpt

type StandardBinOpt func(s *StandardBin)

func WithCachePather

func WithCachePather(pather func() (string, error)) StandardBinOpt

func WithChecksummer

func WithChecksummer(checksummer func(r io.Reader) error) StandardBinOpt

func WithProgressor

func WithProgressor(p ioutil.Progressor) StandardBinOpt

func WithURL

func WithURL(url string) StandardBinOpt

type VersionInfo

type VersionInfo struct {
	Semver string
	SHA    string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL