github.com/vburenin/ifacemaker

This commit is contained in:
andrejrabcenko 2023-07-27 17:04:37 +03:00 committed by Jacob Heider
parent 2ac0d444bd
commit fab940e591
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package main
type Human struct {
name string
}
// Returns the name of our Human.
func (h *Human) GetName() string {
return h.name
}

View file

@ -0,0 +1,24 @@
distributable:
url: https://github.com/vburenin/ifacemaker/archive/v{{version}}.tar.gz
strip-components: 1
versions:
github: vburenin/ifacemaker/tags
build:
dependencies:
go.dev: '*'
script:
- go build $ARGS -ldflags="$LDFLAGS"
env:
ARGS:
- -trimpath
- -o={{prefix}}/bin/ifacemaker
LDFLAGS:
- -s
- -w
provides:
- bin/ifacemaker
test:
script: |
ifacemaker -f human.go -s Human -i HumanIface -p humantest \
-y "HumanIface makes human interaction easy" \
-c "DONT EDIT: Auto generated" | grep "type HumanIface interface"