aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
Commit message (Collapse)AuthorAge
...
* Fix link and formatting.Gravatar spomorski2017-10-27
| | | | PiperOrigin-RevId: 173540551
* RELNOTES: Document interaction between test_suite and target exclusionsGravatar Googler2017-10-26
| | | | PiperOrigin-RevId: 173466491
* fix formatting in repository_rule docGravatar yiyu2017-10-26
| | | | | RELNOTES: None PiperOrigin-RevId: 173399501
* Create a new "Getting Started with Bazel" page.Gravatar spomorski2017-10-25
| | | | PiperOrigin-RevId: 173291756
* Add missing space and fix typo.Gravatar spomorski2017-10-25
| | | | PiperOrigin-RevId: 173290767
* Create a new overview of Bazel.Gravatar spomorski2017-10-25
| | | | PiperOrigin-RevId: 173280851
* Create a CocoaPods to Bazel dependencies conversion guide.Gravatar spomorski2017-10-25
| | | | | | This guide will be labeled as "Experimental" and linked under the new "Experimental" section (unknown commit) with an appropriate disclaimer. PiperOrigin-RevId: 173279988
* Create an "Experimental" section.Gravatar spomorski2017-10-25
| | | | PiperOrigin-RevId: 173277159
* Automated rollback of commit 1b98de65873054b148ced772cfa827a7bfb5ad9a.Gravatar dslomov2017-10-23
| | | | | | | | | | | | | | | | | | | *** Reason for rollback *** If the 'set' function was used in a .bzl file but not called, --incompatible_disallow_set_constructor=True would allow the load of that .bzl file without error, but this change removes the 'set' function so loading that bzl file is an error. Example failure: https://ci.bazel.io/blue/organizations/jenkins/Global%2FTensorFlow/detail/TensorFlow/245/pipeline/ *** Original change description *** Remove the deprecated set constructor from Skylark The `set` constructor used to be deprecated, but it was still possible to use it by providing --incompatible_disallow_set_constructor=false. RELNOTES[INC]: The flag --incompatible_disallow_set_constructor is no longer available, the deprecated `set` constructor is not available anymore. PiperOrigin-RevId: 173115983
* Don't promise to fix everyone's codeGravatar brandjon2017-10-23
| | | | | RELNOTES: None PiperOrigin-RevId: 172877016
* blaze: cookbook: properly quote shell variablesGravatar mpn2017-10-20
| | | | | | | | | Using $* is an abomination. Use properly quoted $@ instead in the example merge.sh script. While at it, fix the syntax highlighting (merge.sh is shell code not Python). RELNOTES: Improved merge.sh script in cookbook. PiperOrigin-RevId: 172789316
* Add memory profiler.Gravatar tomlu2017-10-18
| | | | | | | | | | | This adds two dump command, bazel dump --rules and bazel dump --skylark_memory. dump --rules outputs a summary of the count, action count, and memory consumption of each rule and aspect class. dump --skylark_memory outputs a pprof-compatible file with all Skylark analysis allocations. Users can then use pprof as per normal to analyse their builds. RELNOTES: Add memory profiler. PiperOrigin-RevId: 172558600
* Windows,docs: info about 0.6.0 boostrapping bugGravatar László Csomor2017-10-16
| | | | | | | | | Remove info about older versions' bootstrapping bugs, because we want people to use the latest version. Change-Id: I0639824b9557077062e380996cfc9d2b974778e2 PiperOrigin-RevId: 172297572
* Flip the --incompatible_list_plus_equals_inplace flag by defaultGravatar vladmos2017-10-16
| | | | | | | | | RELNOTES[INC]: += on lists now mutates them. `list1 += list2` is now equivalent to `list1.extend(list2)` and not equivalent to `list1 = list1 + list2` anymore. Fixes #2350. PiperOrigin-RevId: 172111899
* Remove the deprecated set constructor from SkylarkGravatar vladmos2017-10-13
| | | | | | | | | | The `set` constructor used to be deprecated, but it was still possible to use it by providing --incompatible_disallow_set_constructor=false. RELNOTES[INC]: The flag --incompatible_disallow_set_constructor is no longer available, the deprecated `set` constructor is not available anymore. PiperOrigin-RevId: 171962361
* Clarify the direction of visibility in the tutorialGravatar Peter Laird2017-10-13
| | | | | | | | The original text makes it sound like greeter target needs visibility to the runner target. It is the other way around. Closes #3866. PiperOrigin-RevId: 171958509
* Remove deprecated legacy string representations of Skylark objectsGravatar vladmos2017-10-13
| | | | | | | | RELNOTES[INC]: The flag --incompatible_descriptive_string_representations is no longer available, old style string representations of objects are not supported anymore. PiperOrigin-RevId: 171952621
* Make blaze dump docs external.Gravatar tomlu2017-10-12
| | | | | | The dump command is readily available from bazel, so I don't see why the docs should be closed. PiperOrigin-RevId: 171904287
* Link to the Xcode migration guide.Gravatar spomorski2017-10-10
| | | | PiperOrigin-RevId: 171591081
* Update Installing on Windows instructions so that they match the structure ↵Gravatar michelleirvine2017-10-07
| | | | | | of Ubuntu instructions. PiperOrigin-RevId: 171312843
* Create a Bazel migration guide for Xcode.Gravatar spomorski2017-10-06
| | | | PiperOrigin-RevId: 171193160
* Escape newline in bash snippet so the newline doesn't break copy/pasting ↵Gravatar jfield2017-10-06
| | | | | | | into a shell window. RELNOTES: None. PiperOrigin-RevId: 171047048
* Move "mobile-install (Android)" link in navigation bar to the android ↵Gravatar ahumesky2017-10-06
| | | | | | | section and rename to just "mobile-install". RELNOTES: None. PiperOrigin-RevId: 171021110
* Fix example in backward compatibility page.Gravatar laurentlb2017-10-06
| | | | | RELNOTES: None. PiperOrigin-RevId: 170814591
* Clarify steps for introduction of backward incompatible changes.Gravatar michelleirvine2017-09-29
| | | | PiperOrigin-RevId: 170500919
* Fix osx install doc.Gravatar Tim Zaman2017-09-29
| | | | | | | | | - [x] Remove the brew update entry when installed with binary. - [x] Add notion of the `.profile` file instead of `.bashrc` (though neither necessarily exists) Closes #3775. PiperOrigin-RevId: 170376534
* Fix markup in Build Event Protocol documentationGravatar Alex Vandiver2017-09-27
| | | | | | Closes #3765. PiperOrigin-RevId: 170172072
* Update version numbers in installer file names.Gravatar Googler2017-09-27
| | | | PiperOrigin-RevId: 170057335
* Add Fedora install instructions.Gravatar Jakob Buchgraber2017-09-26
| | | | | | | Closes #3721. Change-Id: I4ce8ef72c4ee2b6352df78301888b85388c7c36d PiperOrigin-RevId: 169922383
* Update doc: there is no default value for --jobs.Gravatar Googler2017-09-25
| | | | PiperOrigin-RevId: 169710801
* Update the Bazel iOS tutorial to pull the latest Apple build rules.Gravatar Googler2017-09-25
| | | | PiperOrigin-RevId: 169698060
* Update travis setup instructionsGravatar Siddhartha Bagaria2017-09-25
| | | | | | | | | | Travis now (since Aug 2017) has trusty as the default image for both VM and container, on which the bazel apt repo can be used and so compiling from source is not needed. See working example at https://github.com/grailbio/rules_r/blob/master/.travis.yml Closes #3781. PiperOrigin-RevId: 169695984
* PiperOrigin-RevId: 169422401Gravatar Googler2017-09-21
|
* Fix target label.Gravatar Googler2017-09-20
| | | | PiperOrigin-RevId: 169301145
* Skylark doc: add table of contents hintsGravatar dmarting2017-09-18
| | | | PiperOrigin-RevId: 168818956
* PiperOrigin-RevId: 168816247Gravatar dmarting2017-09-18
|
* Create the "C++ and Bazel" and "Java and Bazel" pages.Gravatar Googler2017-09-14
| | | | PiperOrigin-RevId: 168687598
* Add post-submit changes for ↵Gravatar brandjon2017-09-14
| | | | | | | https://github.com/bazelbuild/bazel/commit/aa1a4f2c3dfdb40bd0f4349cf313354a7543a5a8 RELNOTES: None PiperOrigin-RevId: 168677112
* Update Windows doc about building PythonGravatar pcloudy2017-09-14
| | | | | | | | BAZEL_PYTHON was only used for the old MSVC python wrapper script. After we use wrapper-free CROSSTOOL by default, it's not used anymore. It has nothing to do with building Python rules. The correct way to specify python interpreter is to use --python_path flag. RELNOTES: None PiperOrigin-RevId: 168655953
* Create the "Android and Bazel" and "Apple apps and Bazel" pages.Gravatar Googler2017-09-14
| | | | PiperOrigin-RevId: 168577347
* docs,Windows: update Visual Studio requirementsGravatar laszlocsomor2017-09-13
| | | | | | See https://github.com/bazelbuild/bazel/issues/3109 PiperOrigin-RevId: 168509421
* Added missing documentation for a few options in backward-compatibility.md.Gravatar brandjon2017-09-13
| | | | | RELNOTES: None PiperOrigin-RevId: 168388811
* Bazel and Windows is no longer "experimental"Gravatar Googler2017-09-12
| | | | | RELNOTES: None PiperOrigin-RevId: 168362298
* Docs: Minor fixes for IDE pageGravatar Steren2017-09-12
| | | | | | Closes #3715. PiperOrigin-RevId: 168260772
* docs: mention remote caching in BES documentationGravatar Jakob Buchgraber2017-09-12
| | | | | | | | | cc: @endobson Closes #3698. Change-Id: I12648f4fa284dfee9d56f605dec0d984f8bba3aa PiperOrigin-RevId: 168222979
* Delete skylark index, it is not linked from anywhere.Gravatar dmarting2017-09-12
| | | | PiperOrigin-RevId: 168219611
* Documentation cleanup.Gravatar dmarting2017-09-12
| | | | PiperOrigin-RevId: 168218117
* Documentation cleanup.Gravatar dmarting2017-09-11
| | | | PiperOrigin-RevId: 168196344
* --incompatible_comprehension_variables_do_not_leak defaults to trueGravatar laurentlb2017-09-08
| | | | | | | | RELNOTES[INC]: --incompatible_comprehension_variables_do_not_leak defaults to "true." Iteration variable becomes inaccessible after a list/dict comprehension. PiperOrigin-RevId: 167876119
* Fix some links to query and user manualGravatar dmarting2017-09-08
| | | | PiperOrigin-RevId: 167859496