aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/contributing.md
Commit message (Collapse)AuthorAge
* Adapt the installation instruction to the distfileGravatar Klaus Aehlig2016-11-11
| | | | | | | | | | | | | | | | | Change the installation instructions to be compatible with the upcoming distribution artifact change. For compiling from source, we recommend two ways, - using the distribution archive and calling ./compile.sh, and - using a bootstrap version of bazel already installed and calling bazel build //src:bazel. The third way, of having the precise version of protoc needed already installed is still possible but not recommended as it is very fragile. So do not mention it. -- Change-Id: I2f41913b37bcb0058a28e6b49c496611ae4b1908 Reviewed-on: https://bazel-review.googlesource.com/#/c/7132 MOS_MIGRATED_REVID=138871245
* Global cleanup change.Gravatar Damien Martin-Guillerez2016-10-28
| | | | | -- MOS_MIGRATED_REVID=137494506
* IntelliJ-with-Bazel: Refer users to public website, not github project.Gravatar Googler2016-09-09
| | | | | | | The github repo is just a code drop, and currently not updated. The website contains more up-to-date instructions, in line with the plugin version published to IntelliJ's plugin repo. -- MOS_MIGRATED_REVID=132590585
* Fix the link to Skyframe in the contributing pageGravatar Kush Chakraborty2016-09-01
| | | | | | | -- Change-Id: I33742e39d6620eed9c059cb6c008a9839ae35149 Reviewed-on: https://bazel-review.googlesource.com/5730 MOS_MIGRATED_REVID=131845872
* Fixed link to "Challenges of Writing Rules" from the contributing page.Gravatar Kush Chakraborty2016-09-01
| | | | | | | -- Change-Id: I759cf1c3b102a9fb4a755f817f7c420c8cd01bb7 Reviewed-on: https://bazel-review.googlesource.com/c/5690/ MOS_MIGRATED_REVID=131833178
* Fix the link to Bazel IntelliJ plugin.Gravatar Googler2016-08-26
| | | | | | | RELNOTES:None -- MOS_MIGRATED_REVID=131413516
* Reference IntelliJ plugin in Bazel docs.Gravatar Googler2016-08-16
| | | | | -- MOS_MIGRATED_REVID=130240987
* Rewords the rules pitfall documentGravatar Damien Martin-Guillerez2016-08-05
| | | | | | | So it stop suggesting that it is hard to write rules, though it is not easy to write good rules :) -- MOS_MIGRATED_REVID=129423968
* Rollback of commit 3e8bcae69a0718cf6972be086706b1841e0ed6b7.Gravatar Damien Martin-Guillerez2016-07-29
| | | | | | | | | | | | | | | | | | | | | | | | | | *** Reason for rollback *** Breaks design docs links *** Original change description *** Move Bazel docs into versioned directory. * Move all Bazel docs (excluding main page, search page, and blog) into versions/master directory. * Replace all original pages with redirects. * Add Jekyll config with default_version setting to specify the default version to redirect docs to. * Add Jekyll config with version_prefix setting specific to pages under each version directory. * Update layouts to generate links to pages for the same version with the version_prefix. * Update Blaze rel... *** -- MOS_MIGRATED_REVID=128690580
* Move Bazel docs into versioned directory.Gravatar David Chen2016-07-27
| | | | | | | | | | | | | | | | | | | | | | | | | | * Move all Bazel docs (excluding main page, search page, and blog) into versions/master directory. * Replace all original pages with redirects. * Add Jekyll config with default_version setting to specify the default version to redirect docs to. * Add Jekyll config with version_prefix setting specific to pages under each version directory. * Update layouts to generate links to pages for the same version with the version_prefix. * Update Blaze release script to copy docs from third_party/bazel/site/versions/master Changes to follow this CL: * Separate navigation from layouts so that navigation can be versioned as well. * Add tool for cutting a release of Bazel docs and copies them into a new version directory. Bug: #579 -- MOS_MIGRATED_REVID=128510319
* Add document on bazel rule pitfalls.Gravatar Tobias Werth2016-06-23
| | | | | -- MOS_MIGRATED_REVID=125567367
* Rename community section to "Contribute!".Gravatar Tobias Werth2016-06-21
| | | | | -- MOS_MIGRATED_REVID=125449676
* Bring contribution page up to date.Gravatar Tobias Werth2016-06-21
| | | | | -- MOS_MIGRATED_REVID=125441622
* Delete eclipse_generate.shGravatar Damien Martin-Guillerez2016-06-10
| | | | | | | | | | This is no longer maintained and is now replaced by e4b: https://github.com/bazelbuild/e4b Fixes #12. -- MOS_MIGRATED_REVID=124545211
* Add titles to Bazel documentation pages.Gravatar David Chen2016-01-20
| | | | | | | Fixes #790 -- MOS_MIGRATED_REVID=112563137
* Requires JDK 8Gravatar Damien Martin-Guillerez2015-09-15
| | | | | | | | | | | | This change deprecate JDK 7 as JavaBuilder follow changes in Java 9 and might use Java 8 features. We will maintain a build with the JDK 7 as long as possible but this build won't include updates in JavaBuilder. RELNOTES[INC]: Bazel requires JDK 8 to run. -- MOS_MIGRATED_REVID=103069207
* Fix small issues in contributing.md.Gravatar Philipp Wollermann2015-08-31
| | | | | -- MOS_MIGRATED_REVID=101919009
* Minor documentation fixes. Make sidebar navigation look more consistent.Gravatar David Chen2015-07-27
| | | | | -- MOS_MIGRATED_REVID=98934930
* Add instructions for getting Gerrit HTTP password to contributing.mdGravatar Kamal Marhubi2015-07-23
| | | | | | | | | This will help contributors who only read one level of docs, like myself! -- Reviewed-on: https://github.com/google/bazel/pull/316 MOS_MIGRATED_REVID=98829887
* Fix link syntax in contributing.htmlGravatar Damien Martin-Guillerez2015-07-21
| | | | | -- MOS_MIGRATED_REVID=98726499
* Unify style in "Bazel's code description" section.Gravatar Noah Misch2015-07-02
| | | | | -- MOS_MIGRATED_REVID=97369079
* Lower the requirement to Java 7Gravatar Damien Martin-Guillerez2015-06-19
| | | | | | | | | Now that we are using the error-prone javac, there is no need to impose Java 8. However, because some of our tests are targetting Java 8, developer should still use a JDK 8 to tests. -- MOS_MIGRATED_REVID=96400914
* Update contribution docsGravatar Kristina Chodorow2015-06-16
| | | | | -- MOS_MIGRATED_REVID=96016544
* Reorganized compile.shGravatar Damien Martin-Guillerez2015-06-10
| | | | | | | | | | | | | | | | Now the blessed Bazel binary is self-hosted and correctly labeled. All tools are also built using Bazel and labeled with the release. At the end of the compilation, the output folder only host the Bazel binary now. We use temporary folders to store the intermediate artifacts. Also integrated ./bootstrap_test.sh in compile.sh so there is only one script for everything regarding bootstraping Bazel. -- Change-Id: Idadbd075e7b8ecb6e306b919b7a73c647c5cfbae Reviewed-on: https://bazel-review.googlesource.com/#/c/1460/ MOS_MIGRATED_REVID=95625880
* Update the debugging instructions for the C++ client.Gravatar Thiago Farina2015-06-03
| | | | | | | | | | | This was reported on the bazel-discuss mailing list and was also the only way I could get it to work under gdb. https://groups.google.com/d/msgid/bazel-discuss/df72971c-db75-4e05-97d6-0b98ca054e5c%40googlegroups.com -- Change-Id: I0b37a6bdee48febb35631ead3f76e419b08810bd Reviewed-on: https://bazel-review.googlesource.com/#/c/1430/ MOS_MIGRATED_REVID=95011401
* Expand on the contribution docs a bitGravatar Kristina Chodorow2015-05-21
| | | | | | | | Every time I make a patch through Gerrit it takes me 20 minutes to figure out how, so this is mainly for my benefit. -- MOS_MIGRATED_REVID=94003495
* New design for Bazel site.Gravatar Googler2015-04-22
| | | | | -- MOS_MIGRATED_REVID=91768459
* Add support for creating an IntelliJ project.Gravatar Janak Ramakrishnan2015-04-19
| | | | | -- MOS_MIGRATED_REVID=91492842
* Improve site structureGravatar Kristina Chodorow2015-03-31
It's a bit weird having everything under docs/, so this puts the blog and "about" pages under / and all of the documentation under docs. -- MOS_MIGRATED_REVID=89965504