Skip to content

Commit 555f3bb

Browse files
committed
ci: fix ifacemaker for go 1.11
1 parent 3df9b7b commit 555f3bb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ jobs:
3636
# install 7zip for decompressing test demos
3737
sudo apt-get install -y p7zip-full
3838
39-
# Install interface generator
40-
GO111MODULE=off go get github.com/vburenin/ifacemaker
39+
# Install interface generator - go 1.11 doesn't allow specifying a version with go get or go install, so we need to manually git clone
40+
git clone https://github.com/vburenin/ifacemaker /tmp/ifacemaker
41+
pushd /tmp/ifacemaker && git checkout v1.1.0 && go install . && popd
4142
4243
# Fetch refs for linter
4344
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*

0 commit comments

Comments
 (0)