Update Makefile
and GitHub action to stop relying on GOPATH
#52
Labels
good first issue
Good for newcomers
Makefile
and GitHub action to stop relying on GOPATH
#52
#47 moved the dependency model used by Signy from
dep
to Go modules, meaning we don't need to build the project inGOPATH
anymore.However, there are a few places in
Makefile
where we assume the system that is building the project has set a value for theGOPATH
environment variable, for example:signy/Makefile
Line 42 in 21e031d
Note that there is also a
go get
in thebootstrap
target which (I think?) still needs a validGOBIN
location.We should update the
install
andbootstrap
targets to stop assuming one, and update the GitHub action so we don't set up all the environment variables:signy/.github/workflows/ci.yml
Line 21 in 21e031d
The text was updated successfully, but these errors were encountered: