How to build

Dependencies

Install Go and some other tools.

Refer to Prerequisites chapter for more details.

Building

Clone sources under $ROOTDIR/src/gerrit.automotivelinux.org/gerrit/src/xds/xds-cli in order respect directory hierarchy that match Go package import logic (see How to Write Go Code for more details).

Then use delivered Makefile :

# Declare ROOTDIR, can be any location (for example xds-build)
ROOTDIR=$HOME/xds-build

# Create directory hierarchy that match Go package import logic
mkdir -p $ROOTDIR/src/gerrit.automotivelinux.org/gerrit/src/xds
cd $ROOTDIR/src/gerrit.automotivelinux.org/gerrit/src/xds

# Clone sources
git clone https://gerrit.automotivelinux.org/gerrit/src/xds/xds-cli
# or git clone ssh://YOUR_USERNAME@gerrit.automotivelinux.org:29418/src/xds/xds-cli

# Build xds-cli
# (note that GOPATH will correctly be set by Makefile)
cd xds-cli
make all

Generate xds-cli package / tarball

make package-all