Skip to content

Commit

Permalink
Check Go version (debug)
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Litvinov <[email protected]>
  • Loading branch information
Zensey committed Jul 26, 2024
1 parent 4925c04 commit 8722037
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,6 @@ jobs:
unset CI # workaround for "PackageAndroid" target
which go
go env
echo debug debug
go get -u github.com/debber/debber-v0.3/cmd/debber
echo debug debug
go run mage.go -v ${{ matrix.platform }}
build-swagger:
Expand Down
5 changes: 5 additions & 0 deletions ci/packages/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ func PackageLinuxArmv6l() error {
// PackageLinuxDebianAmd64 builds and stores debian amd64 package
func PackageLinuxDebianAmd64() error {
logconfig.Bootstrap()

if err := sh.Run("go", "version"); err != nil {
log.Error().Msg(err.Error())
}

if err := goGet("github.com/debber/debber-v0.3/cmd/debber"); err != nil {
return err
}
Expand Down

0 comments on commit 8722037

Please sign in to comment.