I am getting the following error when compiling splitsh on github. here is my script:
+ go get github.com/splitsh/lite
cannot find package "github.com/libgit2/git2go/v34" in any of:
/opt/hostedtoolcache/go/1.20.11/x64/src/github.com/libgit2/git2go/v34 (from $GOROOT)
/home/runner/work/google-cloud-php/google-cloud-php/.split/go/src/github.com/libgit2/git2go/v34 (from $GOPATH)
mkdir $1
export GOPATH=$1/go
go env -w GO111MODULE=off
go get -d github.com/libgit2/git2go
cd $GOPATH/src/github.com/libgit2/git2go
git checkout next
git submodule update --init
make install
go get github.com/splitsh/lite
go build -o $1/splitsh-lite github.com/splitsh/lite
My github action is using ubuntu-latest. I think the issue has to do with the new tag for v2.0.0. I am actively debugging it, and plan to either follow the guide in #64 or try to roll it back.
I just wanted to submit this issue here also, in case it's helpful to someone else!
I am getting the following error when compiling
splitshon github. here is my script:My github action is using
ubuntu-latest. I think the issue has to do with the new tag forv2.0.0. I am actively debugging it, and plan to either follow the guide in #64 or try to roll it back.I just wanted to submit this issue here also, in case it's helpful to someone else!