aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/install.md
Commit message (Collapse)AuthorAge
* Update install docs as installer has changedGravatar Samuel Husso2016-01-11
| | | | | | -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/764 MOS_MIGRATED_REVID=111832176
* Clarify that add-apt-repository depends on software-common-propertiesGravatar Shay Weiss2015-12-13
| | | | | | | | I got the "command not found" error for add-apt-repository on a clean Ubuntu installation and I think that the docs can be friendlier if they specify this :) -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/691 MOS_MIGRATED_REVID=110062139
* Mark support for Ubuntu 15.10 instead of 14.10Gravatar Damien Martin-Guillerez2015-11-11
| | | | | | | | Ubuntu 14.10 has reached end-of-life for several months now. -- MOS_MIGRATED_REVID=107473533
* Update links in Bazel docs to point to new BE pages.Gravatar David Chen2015-11-02
| | | | | | | Fixes #529 -- MOS_MIGRATED_REVID=106883457
* 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
* Add compilation instructions back to install docGravatar Kristina Chodorow2015-09-02
| | | | | | | Since we don't actually have any binaries available yet... -- MOS_MIGRATED_REVID=102152129
* Change URLs to bazelbuildGravatar Kristina Chodorow2015-09-01
| | | | | -- MOS_MIGRATED_REVID=102022958
* Update installation instructions to support binary installer:Gravatar Googler2015-08-31
| | | | | | | | - Updates install.md to include information on downloading and running the installer - Updates getting-started.md to refer users to the installation instructions -- MOS_MIGRATED_REVID=101943813
* More specific instructions for Mac OS X installGravatar Dave Dopson2015-08-13
| | | | | | | -- Change-Id: I332634baa1feacbe54c669c12e1933ca9f3f1755 Reviewed-on: https://bazel-review.googlesource.com/#/c/1810 MOS_MIGRATED_REVID=100556377
* Update install.md for Linux's java settingsGravatar Damien Martin-Guillerez2015-06-30
| | | | | | | | | | | Java settings requires to set JAVA_HOME but its is not required anymore on most case. Also the instruction themselves were confusing. Fixes #268 -- MOS_MIGRATED_REVID=97231074
* Add openjdk-7-source to the install guide for UbuntuGravatar Damien Martin-Guillerez2015-06-24
| | | | | | | This is a dependency due to issue #69. -- MOS_MIGRATED_REVID=96751552
* 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
* Remove trace of protobuf installation instructionGravatar Damien Martin-Guillerez2015-06-11
| | | | | | | | Protobuf compiler are vendored inside the Bazel repository so thoses instruction are obsolete. -- MOS_MIGRATED_REVID=95727351
* Add zsh completion scriptGravatar Cody Schroeder2015-06-10
| | | | | | | Fixes #163 -- MOS_MIGRATED_REVID=95542929
* Use the ijar ZIP implementation in Blaze instead of libarchiveGravatar Damien Martin-Guillerez2015-06-01
| | | | | | | | | | | This ZIP implementation is lightweight and rely on zlib for compression. libarchive was a bit tricky to set-up so it's better to use that one. -- Change-Id: I607b492998572e834e095a4606eeb77c0b574542 Reviewed-on: https://bazel-review.googlesource.com/#/c/1410/ MOS_MIGRATED_REVID=94910072
* Fix URL to github repository in install.mdGravatar Damien Martin-Guillerez2015-05-18
| | | | | -- MOS_MIGRATED_REVID=93722291
* Improvements to bazel.io.Gravatar Googler2015-05-01
| | | | | | | | | | | | | * Move sidebar nav on docs and community pages to left side so that the sidebar shows at the top of the page in mobile. Improve appearance of sidebar nav. * Highlight navbar link depending on current page. * Switch Markdown renderer to Redcarpet to enable Pygments highlighting of fenced code blocks (```python etc.) such as on Skylark Cookbook page. * Change ```build to ```python on Skylark cookbook page. * Minor aesthetic tweaks to Install page * Make style of Feedburner widget consistent with rest of page. * Remove use of site_root from layouts and pages since it is no longer necessary after kchodorow@ added JS to redirect from github.google.com/bazel to bazel.io -- MOS_MIGRATED_REVID=92494349
* New design for Bazel site.Gravatar Googler2015-04-22
| | | | | -- MOS_MIGRATED_REVID=91768459
* Fix the wrong PATH on install.mdGravatar Laszlo Csomor2015-04-14
| | | | | | | I thought we already fixed it like 5 times but it's still bad. Sigh. -- MOS_MIGRATED_REVID=91086820
* install.md: typo fixes.Gravatar Damien Martin-Guillerez2015-04-13
| | | | | -- MOS_MIGRATED_REVID=90789947
* Added a few lines to install.md on Bash completionGravatar Damien Martin-Guillerez2015-04-13
| | | | | -- MOS_MIGRATED_REVID=90789198
* Fix linkGravatar Kristina Chodorow2015-04-09
| | | | | -- MOS_MIGRATED_REVID=90713365
* Update getting started instructions with .bazelrc strategyGravatar Kristina Chodorow2015-04-06
| | | | | -- MOS_MIGRATED_REVID=90418845
* Markdown fixes and light editing of Installing Bazel page:Gravatar Googler2015-04-03
| | | | | | | | | - Uses GitHub-style fencing instead of indentation for code blocks - Adds double-= line breaks for paragraph-style list items - Changes some text for readability -- MOS_MIGRATED_REVID=90198077
* Bazel install.md: export PATH should contain the directory containing the ↵Gravatar Laszlo Csomor2015-03-31
| | | | | | | | | binaries rather than the binaries themselves. https://github.com/google/bazel/pull/84 -- MOS_MIGRATED_REVID=89990197
* 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