aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
Commit message (Collapse)AuthorAge
...
* Update C++ gtest example to include all headers in sandboxGravatar Kristina Chodorow2015-12-22
| | | | | | | | | | | | This was originally written before sandboxing was enabled and I didn't notice that src/ contained a header. I've also removed the -Iexternal/gtest lines, since they're no longer needed. Fixes #734. -- MOS_MIGRATED_REVID=110790783
* Add support for downloading through proxiesGravatar Kristina Chodorow2015-12-22
| | | | | | | Fixes #587. -- MOS_MIGRATED_REVID=110785300
* Open source output directory documentationGravatar Kristina Chodorow2015-12-22
| | | | | -- MOS_MIGRATED_REVID=110770240
* Use the right site search IDGravatar Kristina Chodorow2015-12-17
| | | | | -- MOS_MIGRATED_REVID=110473220
* Fixup rowspan on the roadmapGravatar Damien Martin-Guillerez2015-12-17
| | | | | -- MOS_MIGRATED_REVID=110391328
* RELNOTES: add loadfiles() query operator, to find skylark files loaded by ↵Gravatar Han-Wen Nienhuys2015-12-16
| | | | | | | targets. -- MOS_MIGRATED_REVID=110275427
* 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
* Add Java workers blog postGravatar Kristina Chodorow2015-12-10
| | | | | | | (Written by Philipp Wollermann.) -- MOS_MIGRATED_REVID=109919187
* Further improve sandbox documentation.Gravatar Philipp Wollermann2015-12-10
| | | | | -- MOS_MIGRATED_REVID=109881691
* Improve sandboxing documentationGravatar Damien Martin-Guillerez2015-12-10
| | | | | | | | | | - Add mitigation of the common problem to the documentation - Add indication on how to activate sandboxing on some machine (GKE nodes for example) Fixes #433 -- MOS_MIGRATED_REVID=109879921
* Refactor external repository support significantly to solve a number of issues.Gravatar Lukacs Berki2015-12-09
| | | | | | | | | | | | | | | In particular: - Separate the implementation of maven_server into a RepositoryFunction and one that creates the MavenServerValue (ideally, maven_server wouldn't exist but we'll have to make to for the time being) - Refactor the logic of determining whether an external repository needs to be re-fetched to RepositoryDelegatorFunction - Make RepositoryFunctions not be SkyFunctions anymore (they are called from RepositoryDelegatorFunction, though, who *is* a SkyFunction) - Add a Skyframe dirtiness checker that makes --nofetch RepositoryValues not be cached - Add a bunch of test cases and javadoc There is only one wart that I know of that remains: changes to BUILD files of new_* repository rules that weren't refetched when their RepositoryValue was initiall created on server restart won't take effect. This is because we don't add those BUILD files to the created RepositoryValue. This will fix itself once the ExternalFilesHelper refactoring is submitted. -- MOS_MIGRATED_REVID=109768345
* Explicitly mention that 'manual' test targets are not matched by wildcard ↵Gravatar Nathan Harmata2015-12-03
| | | | | | | target patterns and are thus neither built nor tested by invocations like "blaze test //my/project/..." -- MOS_MIGRATED_REVID=109251573
* External repository documentation improvementsGravatar Kristina Chodorow2015-11-26
| | | | | -- MOS_MIGRATED_REVID=108717933
* Fix spelling mistake.Gravatar Googler2015-11-25
| | | | | -- MOS_MIGRATED_REVID=108606372
* Updating roadmap according to the new prioritiesGravatar Damien Martin-Guillerez2015-11-25
| | | | | | | | Also use a largely less optimistic timeline. We will update it each time we complete a milestone. -- MOS_MIGRATED_REVID=108604966
* Fix/remove broken src links in FAQ documentationGravatar Neil2015-11-20
| | | | | | -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/633 MOS_MIGRATED_REVID=108359851
* Fix broken link in Skylark documentationGravatar Laurent Le Brun2015-11-20
| | | | | -- MOS_MIGRATED_REVID=108347869
* Do not recurse into the convenience symlinks when evaluating the "//..." ↵Gravatar Lukacs Berki2015-11-20
| | | | | | | | | target pattern. Apart from the tests, I also tested this manually running "bazel query //..." in a tree with convenience symlinks. -- MOS_MIGRATED_REVID=108325454
* Mention --host_crosstool_top in the docs where it's relevantGravatar Brian Silverman2015-11-20
| | | | | | | | | | I filed #546 because I didn't notice --host_crosstool_top does what I want. -- Change-Id: Ib219753ad69c3026f1aa6d1889a0e7fac4449b2b Reviewed-on: https://bazel-review.googlesource.com/#/c/2261/ MOS_MIGRATED_REVID=108267036
* Run bazel documentation tests on mac/linux.Gravatar Dmitry Lomov2015-11-19
| | | | | | | Also, fix said documentation. -- MOS_MIGRATED_REVID=108247791
* Open source BazelDocumentationTest (and fix documentation).Gravatar Dmitry Lomov2015-11-19
| | | | | -- MOS_MIGRATED_REVID=108145081
* Recommend that optional parameters have a default of None.Gravatar Chris Povirk2015-11-17
| | | | | -- MOS_MIGRATED_REVID=107957505
* Tutorial: fix WORKSPACE env var exportGravatar Kamal Marhubi2015-11-16
| | | | | | | | | As mentioned in mailing list: https://groups.google.com/forum/#!msg/bazel-discuss/Lmmny9foXW0/_tf2ti8KCAAJ -- Change-Id: I8ec654b3cb8a5df28113d1136c511334c1ea99e9 Reviewed-on: https://bazel-review.googlesource.com/#/c/2340/ MOS_MIGRATED_REVID=107923683
* Optionally allow Bazel to pass JVM options containing spaces directly ↵Gravatar Janak Ramakrishnan2015-11-16
| | | | | | | | | through to the JVM instead of (almost certainly incorrectly) splitting the options along spaces. This allows us to pass non-quote-delimited strings to the JVM, which is necessary for things like -XX:OnOutOfMemoryError="kill -3 %p" (normally bash strips those quotes, but they're not stripped when passed via --host_jvm_args). -- MOS_MIGRATED_REVID=107820087
* RELNOTES: Symlink dirents of directories containing a file named ↵Gravatar Nathan Harmata2015-11-13
| | | | | | | | | | | | | | "DONT_FOLLOW_SYMLINKS_WHEN_TRAVERSING_THIS_DIRECTORY_VIA_A_RECURSIVE_TARGET_PATTERN" will *not* be traversed for transitive target patterns. The motivation here is to allow directories that intentionally contain wonky symlinks (e.g. foo/bar -> foo) to opt out of being consumed by Blaze. For example, given <workspace>/foo bar bad -> . DONT_FOLLOW_SYMLINKS_WHEN_TRAVERSING_THIS_DIRECTORY_VIA_A_RECURSIVE_TARGET_PATTERN the 'bad' symlink will *not* be traversed by the pattern '//foo/...'. -- MOS_MIGRATED_REVID=107738930
* Update links to dashboardGravatar Kristina Chodorow2015-11-11
| | | | | -- MOS_MIGRATED_REVID=107489711
* 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
* Replaced smart quotes with plain quotes.Gravatar Misha Brukman2015-11-11
| | | | | | | | | Also added missing blank line before code region to fix Dockerfile formatting on the web site. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/570 MOS_MIGRATED_REVID=107470895
* Add TensorFlow to Bazel users.Gravatar David Chen2015-11-11
| | | | | -- MOS_MIGRATED_REVID=107470234
* Change "contact us" link in Bazel's mobile-install docs, to point at the ↵Gravatar Carmi Grushko2015-11-04
| | | | | | | | | bazel-discuss group, not the contribution instructions. RELNOTES: -- MOS_MIGRATED_REVID=106995833
* Update links in Bazel docs to point to new BE pages.Gravatar David Chen2015-11-02
| | | | | | | Fixes #529 -- MOS_MIGRATED_REVID=106883457
* Changes from [] that were left out of theGravatar Brian Silverman2015-11-02
| | | | | | | | | | | | | | previous commit Document and test how rules can run without the sandbox. The only documentation about usable tags values was in a weird place, along with duplicated information about flaky tests. -- Change-Id: Ib98a0a5c582890512161ecf9f5d89c8e78d9ad68 Reviewed-on: https://bazel-review.googlesource.com/#/c/2220 MOS_MIGRATED_REVID=106858070
* Add Jsonnet to list of Bazel users.Gravatar David Chen2015-10-28
| | | | | -- MOS_MIGRATED_REVID=106487671
* Split Build Encyclopedia into multiple pages.Gravatar David Chen2015-10-23
| | | | | -- MOS_MIGRATED_REVID=106092764
* Fix profiling doc missing in Bazel manualGravatar Klaas Boesche2015-10-21
| | | | | -- MOS_MIGRATED_REVID=105952522
* --Gravatar Googler2015-10-21
| | | | MOS_MIGRATED_REVID=105884504
* Update ios-app tutorial to use ios_application for bundling instead of the ↵Gravatar Chris Parsons2015-10-14
| | | | | | | | | deprecated bundling functionality of objc_binary. This is to be coordinated with updating the example app (linked to within the tutorial) -- MOS_MIGRATED_REVID=105430949
* Fix two bad links to the bazel-discuss Google group.Gravatar Andy Reitz2015-10-09
| | | | | | | -- Change-Id: Ic4935e6c1198957c390718c33431a67ffd66d023 Reviewed-on: https://bazel-review.googlesource.com/#/c/2110/ MOS_MIGRATED_REVID=105052988
* Recommend copts for external include paths, as it's less infectious than ↵Gravatar Kristina Chodorow2015-10-09
| | | | | | | | | | includes=[] includes=[] is inherited by all rules that depend on it, which makes resolving ordering issues more difficult. -- MOS_MIGRATED_REVID=104961784
* Document the --spawn_strategy and --genrule_strategy flag in the user manual.Gravatar Philipp Wollermann2015-10-09
| | | | | -- MOS_MIGRATED_REVID=104958733
* Fix layout issues with site/roadmap.mdGravatar Googler2015-10-05
| | | | | | | | - replaced date delimiters with non-breaking hyphens - fixed some rowspan mis-counts -- MOS_MIGRATED_REVID=104655701
* Bazel user manual: simplify the documentation of Sandboxing.Gravatar Laszlo Csomor2015-10-05
| | | | | -- MOS_MIGRATED_REVID=104644891
* Flag the Android NDK step as optional, fix a typo and tweak the text a bit.Gravatar Googler2015-09-30
| | | | | -- MOS_MIGRATED_REVID=104321044
* Roadmap: delete API items from the intermediate milestonesGravatar Damien Martin-Guillerez2015-09-30
| | | | | | | | This items are not precise enough and they do not make sense if we do that organically by shipping the test coverage. -- MOS_MIGRATED_REVID=104295130
* Update FAQ about supported languageGravatar Damien Martin-Guillerez2015-09-30
| | | | | | | | This part was mostly out of date and it will be hard to maintain the list of languages in many places, removed it. -- MOS_MIGRATED_REVID=104292596
* Remove extraneous comma from iOS app page in tutorialGravatar Googler2015-09-30
| | | | | -- MOS_MIGRATED_REVID=104241690
* Add strip_prefix to the C++ documentationGravatar Kristina Chodorow2015-09-28
| | | | | -- MOS_MIGRATED_REVID=104097995
* Add PetitParser to usersGravatar Kristina Chodorow2015-09-25
| | | | | | | Also moved the corporate users up. -- MOS_MIGRATED_REVID=103940710
* Fix broken links to lib/Globals.html.Gravatar Googler2015-09-25
| | | | | -- MOS_MIGRATED_REVID=103940678
* Mention chroot in --batch description.Gravatar Han-Wen Nienhuys2015-09-25
| | | | | | | Fixes #134. -- MOS_MIGRATED_REVID=103935102