aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
Commit message (Collapse)AuthorAge
* Update skylark docs to use build labels consistently for skylark loadsGravatar Googler2016-04-21
| | | | | -- MOS_MIGRATED_REVID=120339643
* Add Swift to the Bazel roadmapGravatar Damien Martin-Guillerez2016-04-20
| | | | | -- MOS_MIGRATED_REVID=120309611
* Adds Stripe.com to the list of users of Bazel.Gravatar Damien Martin-Guillerez2016-04-20
| | | | | -- MOS_MIGRATED_REVID=120262286
* Add Gulava to list of Bazel clients.Gravatar Matthew DeVore2016-04-20
| | | | | -- MOS_MIGRATED_REVID=120247206
* Deprecate top-level Java toolchain flags in favour of java_toolchainGravatar Liam Miller-Cushon2016-04-19
| | | | | | | | | | | | | This change disables --java_langtools, --javabuilder_top, --singlejar_top, --genclass_top, and --ijar_top, and finishes replacing them with java_toolchain.{javac,javabuilder,singlejar,genclass,ijar}. RELNOTES: Replace --java_langtools, --javabuilder_top, --singlejar_top, --genclass_top, and --ijar_top with java_toolchain.{javac,javabuilder,singlejar,genclass,ijar} -- MOS_MIGRATED_REVID=120154954
* Fix mismatch between docs and backend/BUILD in master in examples/tutorial.Gravatar Eric Paniagua2016-04-18
| | | | | | | | The tutorial is broken when using the original BUILD source copied from the docs, and this change fixes it. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/1137 MOS_MIGRATED_REVID=120102063
* Fix bug introduced by commit dc0fbb42ab22ab8f3205b0884069e1ffe03677c9 where ↵Gravatar Nathan Harmata2016-04-07
| | | | | | | | | | | | | a less specific option specification in a rc file could override a more specific option specification when there's a non-trivial Command hierarchy. A concrete example would be a "build --foo=1" line overriding a "test --foo=2" line for a "test" invocation. See the added test for more details. Also fix some typos in BlazeCommandDispatcherRcoptionsTest.java. Note that commit dc0fbb42ab22ab8f3205b0884069e1ffe03677c9 was rolled back in commit 417dad0f1e0d0ed4ccd5f8e52b49eb79937da49d which also incidentally rolled back commit 4f0fbe1b09333806cce76b75214e98c7684766e0. So this change is effectively a roll-forward of both of those, plus the bug fix, plus the typo fixes, and plus a documentation update. -- MOS_MIGRATED_REVID=119276218
* Add some documentation about --output=build.Gravatar Googler2016-04-07
| | | | | -- MOS_MIGRATED_REVID=119087054
* Update roadmapGravatar Damien Martin-Guillerez2016-04-01
| | | | | | | | | - Add milestones for the end of the year. 0.9 is a bit optimistic - Add link from milestone version to the corresponding release - Moved completed items to the correct milestones. -- MOS_MIGRATED_REVID=118761783
* Adds a blog post about C++ autoconf with Skylark remote repositoryGravatar Damien Martin-Guillerez2016-03-31
| | | | | | | | Also a bit of best practices (for issue #1081) that should be integrated into the main documentation later when everything gets more stable. -- MOS_MIGRATED_REVID=118706269
* faq: remove mention of the tools directoryGravatar Damien Martin-Guillerez2016-03-31
| | | | | | | | | This is no longer relevant. Fixes #1099 -- MOS_MIGRATED_REVID=118574360
* in the query docs, correctly refer to the --output option not --orderGravatar Benjamin Peterson2016-03-30
| | | | | | | -- Change-Id: I7830558b688fb648d6f931bf79e82b9ee65bb18c Reviewed-on: https://bazel-review.googlesource.com/c/3160/ MOS_MIGRATED_REVID=118472905
* Adds Skylark Remote Repository documentationGravatar Damien Martin-Guillerez2016-03-24
| | | | | | | Fixes #1043 -- MOS_MIGRATED_REVID=118039426
* docs: update the output for the --subcommands optionGravatar Thiago Farina2016-03-24
| | | | | | | | | | Specially because base_workspace is not involved anymore since the 0.2.0 release. -- Change-Id: I70143a57202f6d487f7ab828da61f0ea127694e8 Reviewed-on: https://bazel-review.googlesource.com/c/3130/ MOS_MIGRATED_REVID=118036928
* Remove deprecated Skylark rulesGravatar Kristina Chodorow2016-03-24
| | | | | -- MOS_MIGRATED_REVID=117968196
* Add blog post: Easier Debugging of Sandbox FailuresGravatar Yue Gan2016-03-21
| | | | | | | RELNOTES: -- MOS_MIGRATED_REVID=117724855
* docs: add missing '-p' flag to mkdir command in the exampleGravatar Thiago Farina2016-03-21
| | | | | | | | | | | | | | | | | | When passing a path that has some parent directories to mkdir command you also need to pass '-p' flag to tell it to make the parent directories as needed. Otherwise you will get an error like this: mkdir: cannot create directory `src/main/java/com/example/cmdline': No such file or directory This patch fixes this documentation as it was suggested at https://groups.google.com/d/msgid/bazel-discuss/e3d20e6e-9b6f-410f-b80c-67afa9ebc9f9%40googlegroups.com?utm_medium=email&utm_source=footer -- Change-Id: I3075ac66bb7cf42f97139246471e2120838da1e6 Reviewed-on: https://bazel-review.googlesource.com/#/c/3102/ MOS_MIGRATED_REVID=117708676
* Fix a small typo.Gravatar Googler2016-03-15
| | | | | -- MOS_MIGRATED_REVID=117130300
* Expose runfiles symlink functionality in SkylarkGravatar Googler2016-03-11
| | | | | | | | | | | | | | | | | | | | | The Skylark rule context object has a runfiles method. This adds two optional parameters to that method, "symlinks" and "root_symlinks", that expose functionality from the underlying Runfiles java class. With this functionality, one can construct links in the runfiles tree where the source and destination of the link have different names and/or relative directories. This might be useful for things like AppEngine rules where a file in a subdirectory of the source tree needs to appear in the root directory of the runfiles tree. If either new parameter is used, the runfiles is subject to stricter validity checking. This checking propagates to other runfiles that depend on it. RELNOTES: Added "root_symlinks" and "symlinks" parameters to Skylark runfiles() method. -- MOS_MIGRATED_REVID=116879064
* Fix typo in users.mdGravatar Damien Martin-Guillerez2016-03-08
| | | | | -- MOS_MIGRATED_REVID=116396805
* Upgrade Apache Commons Collections to v3.2.2Gravatar Googler2016-03-04
| | | | | | | | | | | | | | Version 3.2.1 has a CVSS 10.0 vulnerability. That's the worst kind of vulnerability that exists. By merely existing on the classpath, this library causes the Java serialization parser for the entire JVM process to go from being a state machine to a turing machine. A turing machine with an exec() function! https://commons.apache.org/proper/commons-collections/security-reports.html http://foxglovesecurity.com/2015/11/06/what-do-weblogic-websphere-jboss-jenkins-opennms-and-your-application-have-in-common-this-vulnerability/ -- MOS_MIGRATED_REVID=116309858
* Fix broken link to Databricks on the Bazel Users page.Gravatar Todd Jeffreys2016-03-04
| | | | | -- MOS_MIGRATED_REVID=116268609
* Fix user manual formattingGravatar Kristina Chodorow2016-03-03
| | | | | | | Fixes #995. -- MOS_MIGRATED_REVID=116247058
* Add InteraXon, Beeswax and Databricks to the list of users.Gravatar Damien Martin-Guillerez2016-03-02
| | | | | -- MOS_MIGRATED_REVID=116096201
* Clean up attribute documentation hoping to make it clearer. Specifically ↵Gravatar Dave MacLachlan2016-03-02
| | | | | | | | | that labels and label_lists are actually of type Target, and adding more cross linking to various documentation to make it easier to peruse. Tested all of the links to make sure they work. -- MOS_MIGRATED_REVID=116076080
* Add some cross referencing to the cookbook and standardize header style for ↵Gravatar Dave MacLachlan2016-03-01
| | | | | | | markdown. -- MOS_MIGRATED_REVID=116007304
* Fix typo in Bazel Users page.Gravatar Todd Jeffreys2016-03-01
| | | | | -- MOS_MIGRATED_REVID=115993414
* Fix typos in users listGravatar Brian Silverman2016-03-01
| | | | | | | -- Change-Id: I32fcc7c75dee8211706a92020957501b32249332 Reviewed-on: https://bazel-review.googlesource.com/#/c/3031/ MOS_MIGRATED_REVID=115948667
* Add a bazel-srcs target to the top-level package containing all Bazel sourcesGravatar Damien Martin-Guillerez2016-02-29
| | | | | | | | This target include all non tests targets of Bazel to do integration tests of bootstrapping. -- MOS_MIGRATED_REVID=115830741
* Fix typo in Peloton names in the description in our user list.Gravatar Damien Martin-Guillerez2016-02-29
| | | | | -- MOS_MIGRATED_REVID=115801531
* Add Peleton Tech and FFruit to the list of usersGravatar Damien Martin-Guillerez2016-02-28
| | | | | -- MOS_MIGRATED_REVID=115749277
* Add Ascend.io and XIOSim to our user list.Gravatar Damien Martin-Guillerez2016-02-28
| | | | | -- MOS_MIGRATED_REVID=115710924
* Global cleanup change.Gravatar Googler2016-02-28
| | | | | -- MOS_MIGRATED_REVID=115695111
* Fix load() examples to use build targets instead of file paths.Gravatar Googler2016-02-25
| | | | | -- MOS_MIGRATED_REVID=115492703
* Add zlib-devel to the set of pacman packages we ask people to install on ↵Gravatar Lukacs Berki2016-02-24
| | | | | | | | | Windows. Also make windows.md a bit nicer in general. -- MOS_MIGRATED_REVID=115449272
* Adds a link to the release 0.2.0 in the blog post announcing it.Gravatar Damien Martin-Guillerez2016-02-23
| | | | | -- MOS_MIGRATED_REVID=115380951
* Update external dependencies documentation to mention the --artifact ↵Gravatar Alex Humesky2016-02-23
| | | | | | | argument to generate_workspace. -- MOS_MIGRATED_REVID=115367724
* Looks to me like the example was slightly broken, I think this fixes it.Gravatar Googler2016-02-23
| | | | | -- MOS_MIGRATED_REVID=115346303
* Blog post for 0.2.0 releaseGravatar Kristina Chodorow2016-02-23
| | | | | -- MOS_MIGRATED_REVID=115328967
* blaze user manual: remove a clause about --blazerc that is not true.Gravatar Googler2016-02-23
| | | | | -- MOS_MIGRATED_REVID=115320148
* Doc update for Skylark syntax, mention 'is' is not supportedGravatar Laurent Le Brun2016-02-22
| | | | | -- MOS_MIGRATED_REVID=115209664
* Add documentation on how to build for an iOS device, use a provisioning ↵Gravatar Dave MacLachlan2016-02-22
| | | | | | | profile, and install an app on a device. -- MOS_MIGRATED_REVID=115175241
* Add link to Windows instructions to sidebar and Install page.Gravatar David Chen2016-02-22
| | | | | | | Also, minor tweaks to search box on mobile. -- MOS_MIGRATED_REVID=115164906
* Fix a typo in windows.mdGravatar Michael Zhou2016-02-22
| | | | | | | | | Also add syntax highlighting to the bash commands. -- Change-Id: I327593afdfb048e4a348738ea2c9902ab48f0431 Reviewed-on: https://bazel-review.googlesource.com/#/c/2980/ MOS_MIGRATED_REVID=115104422
* Add missing instructions to Windows build docsGravatar Solal Pirelli2016-02-22
| | | | | | | | | | The zip and unzip packages are required, but not installed by default on msys2. ~~Since compilation creates hard links, it needs admin privileges.~~ -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/941 MOS_MIGRATED_REVID=115071091
* Update windows.md with instructions to bootstrap Bazel.Gravatar Dmitry Lomov2016-02-19
| | | | | | | | | Fixes #276. RELNOTES: Experimental Windows support is available. -- MOS_MIGRATED_REVID=115052789
* Minor style fixes.Gravatar Googler2016-02-19
| | | | | -- MOS_MIGRATED_REVID=115033052
* Update roadmap for 0.2Gravatar Damien Martin-Guillerez2016-02-18
| | | | | | | Fixes #912. -- MOS_MIGRATED_REVID=114941859
* Add allow_files to cookbook example for using a binary.Gravatar Eric Dobson2016-02-17
| | | | | | | | The example implies that this works for an existing binary, but if the rule is a file then it doesn't work. This changes it so that users will know that the allow_files option exists and they likely want it in this case. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/892 MOS_MIGRATED_REVID=114849501
* Tutorial: change load statement to use the new syntax.Gravatar Damien Martin-Guillerez2016-02-15
| | | | | | | This the tutorial part of change for https://github.com/bazelbuild/examples/issues/10. -- MOS_MIGRATED_REVID=114677244