aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
Commit message (Collapse)AuthorAge
...
* Fix minor errors in[]Gravatar Googler2018-06-26
| | | | PiperOrigin-RevId: 202161910
* Clarify that depset order is deterministicGravatar brandjon2018-06-25
| | | | | | | In response to https://github.com/bazelbuild/rules_scala/issues/531 RELNOTES: PiperOrigin-RevId: 201966809
* If a dictionary is used as a general set, the keys should be mapped to ↵Gravatar Googler2018-06-21
| | | | | | | | | | `True` instead of `None`. dict has a get() method that defaults to `None`. Checking for a key in the dictionary with get() will always return `None` in the given example. Using `True` is better. RELNOTES: None. PiperOrigin-RevId: 201551896
* Add Missing RobotoDraft-700 font to docsGravatar Branton Horsley2018-06-15
| | | | | | | | Fixed bug where \<strong\> tags were being improperly rendered Closes #5414. PiperOrigin-RevId: 200789831
* repository_rules.md: update documentation on return valuesGravatar Klaus Aehlig2018-06-15
| | | | | | | | | Since commit 97132c0925031e1b1fb8e9e5dde2233daef9d97b, repository rule implementations are allowed to return other values than `None`. Describe the currently supported values and their intended meaning. Change-Id: I63dbbff4b232b36861aa2a6cfdc69352fa971f4d PiperOrigin-RevId: 200707564
* Remove fixed point config expansion.Gravatar ccalvarin2018-06-14
| | | | | | | Deprecates the flag, though it continues to exist as a no-op so that users get a warning before errors. RELNOTES: --noexpand_configs_in_place is deprecated. PiperOrigin-RevId: 200572053
* Add missing space.Gravatar spomorski2018-06-14
| | | | PiperOrigin-RevId: 200555806
* Fix link to windows platform bugsGravatar justhecuke2018-06-14
| | | | | | | | | | Link currently finds no issues. This seems to be because the proper tag is "platform:windows" rather than the documented "multi-platform > windows". The fix merely updates the text and link to "platform:windows". Closes #5393. PiperOrigin-RevId: 200533655
* Document troubleshooting Bazel remote execution using the Docker sandbox ↵Gravatar spomorski2018-06-13
| | | | | | feature. PiperOrigin-RevId: 200451804
* Add documentation on platform flags to the user manual.Gravatar jcater2018-06-13
| | | | PiperOrigin-RevId: 200410790
* Fix xdot command example in cpp tutorialGravatar Naresh2018-06-12
| | | | | | | | | | | | [Documentation fix] In recent versions of xdot, piping the output of `bazel query` no longer displays the visualization due to an unrelated change in xdot. So, use redirection instead of pipe. Closes #5316. PiperOrigin-RevId: 200220180
* Platform documentation fixes.Gravatar jcater2018-06-12
| | | | PiperOrigin-RevId: 200218884
* docs: don't list all attribute types in build-refGravatar Laszlo Csomor2018-06-12
| | | | | | | | | | | Fixes https://github.com/bazelbuild/bazel/issues/5362 Change-Id: I41d7b78e8d31d4a08ba0aba35c81723cbb315c40 Closes #5364. Change-Id: I41d7b78e8d31d4a08ba0aba35c81723cbb315c40 PiperOrigin-RevId: 200182384
* docs: fix broken link on tutorial/java.htmlGravatar Laszlo Csomor2018-06-12
| | | | | | | | | | | Fixes https://github.com/bazelbuild/bazel/issues/5358 Change-Id: I0c9eca59349069a41e3613600df25ed2b678b34c Closes #5363. Change-Id: I0c9eca59349069a41e3613600df25ed2b678b34c PiperOrigin-RevId: 200182247
* Document adapting custom Bazel rules for remote execution.Gravatar spomorski2018-06-11
| | | | PiperOrigin-RevId: 200060887
* docs,windows: emphasize that BAZEL_VS != BAZEL_VCGravatar Laszlo Csomor2018-06-10
| | | | | | | | | | | Fixes https://github.com/bazelbuild/bazel/issues/5272 Change-Id: Ia49c084f1fe036ff0e5b18fea096f31642cf8b5b Closes #5280. Change-Id: Ia49c084f1fe036ff0e5b18fea096f31642cf8b5b PiperOrigin-RevId: 200005785
* Publish detailed configurable attributes (select()) documentation.Gravatar gregce2018-06-08
| | | | | | Fixes #2154 PiperOrigin-RevId: 199830177
* Add link to the auto-generated Node_JS rules documentation.Gravatar spomorski2018-06-08
| | | | | RELNOTES: None. PiperOrigin-RevId: 199796230
* Mark --batch as deprecated in the documentation.Gravatar ccalvarin2018-06-06
| | | | | RELNOTES: None. PiperOrigin-RevId: 199503117
* Add explicit TOC and fix markdown incompatible with Jekyll.Gravatar spomorski2018-06-05
| | | | PiperOrigin-RevId: 199330926
* Fix TEST_SHARD_INDEX documentation.Gravatar Googler2018-06-05
| | | | | RELNOTES: PiperOrigin-RevId: 199320234
* Update Blaze documentation to reflect that gcc is not the only compiler used.Gravatar Googler2018-06-04
| | | | | | For generic references to the C/C++ compiler, stop referring to it as "gcc", as other compilers are used frequently now. PiperOrigin-RevId: 199244730
* Fix submenu element ID.Gravatar spomorski2018-06-04
| | | | | RELNOTES: None. PiperOrigin-RevId: 199184609
* Remove --glibc optionGravatar rosica2018-06-04
| | | | | | | Crosstool selection will be based solely on --cpu and --compiler options. RELNOTES: Option --glibc is removed, toolchain selection relies solely on --cpu and --compiler options. PiperOrigin-RevId: 199156131
* Add documentation for building JavaScript outputs.Gravatar spomorski2018-06-04
| | | | | RELNOTES: None. PiperOrigin-RevId: 199151698
* Small tagging change in HTML doc.Gravatar Googler2018-06-04
| | | | PiperOrigin-RevId: 199143339
* Make tools in action inputs an error.Gravatar tomlu2018-06-02
| | | | | | | | | | Supporting tools in inputs introduces a slow linear scan. Such tools should be moved to the 'tools' attribute. If --incompatible_no_support_tools_in_action_inputs is set the inputs are scanned, but a helpful error message is issued to the user. Eventually we will remove the slow scanning. Errors will surface in the execution phase instead of during analysis, and the resulting error messages will be less obvious. RELNOTES: None RELNOTES[INC]: With --incompatible_no_support_tools_in_action_inputs enabled, Skylark action inputs are no longer scanned for tools. Move any such inputs to the newly introduced 'tools' attribute. PiperOrigin-RevId: 198996093
* Fix string.title and string.upper documentation.Gravatar Googler2018-06-01
| | | | | | | Cut and paste errors left references to lower in descriptions. RELNOTES: None. PiperOrigin-RevId: 198903374
* docs(tutorial/cpp): fix link to other tutorialsGravatar Kelsey Z2018-05-31
| | | | | | | | iOS and android now have separated tutorials, fix a dead-link in the documentation Closes #5298. PiperOrigin-RevId: 198723211
* Provide more details on the transition to Skylark {git,http}_repositoryGravatar Klaus Aehlig2018-05-30
| | | | | | | | In the description of incompatible changes, provide more information on the how to transition to the Skylark versions of the deprecated native rules. Change-Id: I30c6ee6560a4aed0d6d8356b00e6c1afec460f22 PiperOrigin-RevId: 198544104
* docs, website: remove bad `sh` from commandGravatar Laszlo Csomor2018-05-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The MarkDown engine we use for the Bazel website renders the following MarkDown block: foo: ```sh bar ``` to HTML as: foo: <code>sh bar</code> when in fact it should render it as: foo: <code class="sh">bar</code> This resulted in a bad command that the users couldn't run as it was on the website. Change-Id: If127ca83375b4d1f8c6403fdec16bbd79498cb5d Closes #5288. Change-Id: If127ca83375b4d1f8c6403fdec16bbd79498cb5d PiperOrigin-RevId: 198380352
* Fix typo in cpp.mdGravatar ????2018-05-28
| | | | | | | | | Hi, I fixed a typo in the tree representation of tutorial directories/files at `cpp.md`. Closes #5276. PiperOrigin-RevId: 198297573
* GDPR Compliance: Add link to Google Privacy Policy to Bazel Site FooterGravatar Serge2018-05-24
| | | | | | Closes #5257. PiperOrigin-RevId: 197915412
* Remove colspan=2 from test encyclopedia entry.Gravatar Googler2018-05-23
| | | | | | Was creating an extra column that stuck out from the rest. PiperOrigin-RevId: 197785920
* De-document the Skylark "data" transition.Gravatar gregce2018-05-23
| | | | | | This is going away with the removal of C++ LIPO support. PiperOrigin-RevId: 197779736
* Remove "bazel run --nodirect_run".Gravatar lberki2018-05-18
| | | | | | | RELNOTES[INC]: Bazel now always runs binaries in with "bazel run" in interactive mode. The "--nodirect_run" command line option is now a no-op. PiperOrigin-RevId: 197121535
* Add more detail on toolchain resolutionGravatar katre2018-05-17
| | | | | | | | Trying to clarify the toolchain resolution process so I can link it from design docs in the future. Closes #5171. PiperOrigin-RevId: 196992276
* Replace html pre block with markdown code block to show <version>Gravatar Jamie2018-05-17
| | | | | | Closes #5181. PiperOrigin-RevId: 196991120
* Fix typo in user manualGravatar Dmitry Petrashko2018-05-17
| | | | | | | | Fix a typo in option name Closes #4927. PiperOrigin-RevId: 196964791
* Update android_instrumentation_test docs to reflect new android/android-test ↵Gravatar jingwen2018-05-16
| | | | | | | repository RELNOTES: None. PiperOrigin-RevId: 196895737
* Make small readability improvements to Blaze user manual.Gravatar Googler2018-05-16
| | | | | RELNOTES: None. PiperOrigin-RevId: 196837438
* docs: fix formatting errorsGravatar Laszlo Csomor2018-05-14
| | | | | | | | | Change-Id: Id881cc4381fcd355a3b4a65d9089072e4818aa16 Closes #5159. Change-Id: If14c9a2e55192f5ee5ab384fad27275a24ec12b1 PiperOrigin-RevId: 196472499
* Recommend 4 spaces for indentation in the style guide.Gravatar laurentlb2018-05-09
| | | | | | | | Users shouldn't worry too much about it, we will soon recommend using Buildifier. RELNOTES: None. PiperOrigin-RevId: 196025297
* Fix typo.Gravatar Googler2018-05-09
| | | | | RELNOTES: None. PiperOrigin-RevId: 195934652
* Automatic code cleanup.Gravatar Googler2018-05-04
| | | | PiperOrigin-RevId: 195486836
* docs: rewrite Windows install and bootstrap guideGravatar Laszlo Csomor2018-05-04
| | | | | | | | | | | | | | Simplify the installation and bootstrapping instruction for Windows. Fixes https://github.com/bazelbuild/bazel/issues/4784 Change-Id: I564cd6136ac5b2f0661665765b9bb488e23fe6b0 Closes #5152. Change-Id: I564cd6136ac5b2f0661665765b9bb488e23fe6b0 PiperOrigin-RevId: 195382164
* Update recursive glob docs.Gravatar Googler2018-05-03
| | | | PiperOrigin-RevId: 195288040
* remote/docs: fix position in ToC and grammar mistakes.Gravatar buchgr2018-05-03
| | | | | RELNOTES: None PiperOrigin-RevId: 195240157
* Document test sharding and --test_filter for test runnersGravatar Paul Draper2018-05-02
| | | | | | | | Learnings gathered from JunitRunner (in implementing https://github.com/andyscott/rules_scala_annex/pull/38) Closes #5041. PiperOrigin-RevId: 195206493
* Add --incompatible_disallow_legacy_javainfo flag.Gravatar tomlu2018-05-02
| | | | | | | | When set to true, old-style JavaInfo provider construction methods become an error. RELNOTES[INC]: Add --incompatible_disallow_legacy_javainfo flag. PiperOrigin-RevId: 195104452