-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |