Sync up with domokit at 0e34ee926b140853b6d8ae4f317affc7caffe672

Change-Id: I743d3858d629cc9199c0da62cb026b36ad69a1d9
2 files changed
tree: a17ec60fe4d0d8e8ef7640e036b4f377801e1540
  1. git-hooks/
  2. android
  3. buildtools
  4. LICENSE
  5. minimal
  6. mojo
  7. README.md
README.md

mojo-manifest

Contains the jiri manifest for the Mojo project

Creating a new checkout

Mojo uses the jiri tool to manage repositories https://github.com/vanadium/go.jiri. This tool manages a set of repositories specified by a manifest. The bootstrap procedure requires that you have Go 1.4 or newer and Git installed and on your PATH. To create a new Mojo checkout in a directory called ‘mojo’ run the following commands. The ‘mojo’ directory should not exist before running these steps.

curl -s https://raw.githubusercontent.com/vanadium/go.jiri/master/scripts/bootstrap_jiri | bash -s mojo
export PATH=`pwd`/mojo/.jiri_root/scripts:`pwd`/mojo/depot_tools:$PATH
cd mojo
jiri import --name manifest mojo https://mojo.googlesource.com/mojo-manifest
jiri update

Setting up your environment

Mojo requires several libraries and tools to build and run. Many are placed within the checkout and updated whenever jiri update runs, but some must be installed on the system. Run

mojo/src/build/install-build-deps.sh

to install these packages.

See https://github.com/domokit/mojo for instructions on building and running tests for Mojo.

Submitting changes

To submit a patch in the Mojo repo do the following

cd mojo/src
# write some awesome stuff, commit to local branch
git checkout -b branch_name
vim some_file ...
git commit ...

# upload the patch to gerrit
jiri cl mail