aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* ProtoCompileActionBuilder can create strict-deps-checking command lines.Gravatar Carmi Grushko2016-11-21
| | | | | | | No behavior changes, for now. -- MOS_MIGRATED_REVID=139614509
* Using an ActionFileInputCache for SHA1 digests used with remote execution.Gravatar Ola Rozenfeld2016-11-21
| | | | | -- MOS_MIGRATED_REVID=139613925
* Provide a parallel implementation of "e1 + e2".Gravatar Nathan Harmata2016-11-21
| | | | | -- MOS_MIGRATED_REVID=139613681
* Fixes test infrastructure bug that wrongly trims output pathsGravatar Greg Estren2016-11-21
| | | | | | | for untrimmed dynamic configs. -- MOS_MIGRATED_REVID=139612917
* Improve reliability/performance of Bazel downloadsGravatar Justine Tunney2016-11-21
| | | | | | | | | | | | | | | | 1. We now retry on connection failures. a. With exponential backoff. b. While recovering quickly from ephemeral failures. c. While still working if internet or web server is slow. 2. We now request gzip responses from web server. Fixed #1760 Fixed #1910 RELNOTES: External downloads now retry with exponential backoff and support gzip content-encoding. -- MOS_MIGRATED_REVID=139612882
* Adds support for multiple top-level dynamic configurationsGravatar Greg Estren2016-11-21
| | | | | | | (e.g. --experimental_multi_cpu). -- MOS_MIGRATED_REVID=139607063
* Sign app and frameworks in simulator builds.Gravatar Peter Schmitt2016-11-21
| | | | | | | | | This has become necessary starting with Xcode 8 although we apply the signature in all cases. Signing is done without entitlements and with signing identity "-". -- MOS_MIGRATED_REVID=139606540
* Pass direct jars to Jack.Gravatar Michael Staib2016-11-21
| | | | | | | | | | | | The R class generator produces a compiled jar, not a java source file. This means all android libraries/binaries with resources will need to convert this jar to jack to ensure that they have access to jars. This change will not fix Jack builds, but it is a necessary step toward fixing them. -- MOS_MIGRATED_REVID=139599250
* Better error message for experimental_objc_library targets built with aGravatar Cal Peyser2016-11-21
| | | | | | | crosstool that does not support objc. -- MOS_MIGRATED_REVID=139598484
* Extra-actions originating in Aspects are reported even if the rule we attach ↵Gravatar Carmi Grushko2016-11-21
| | | | | | | | | | | | | | | | | to also registers extra-actions. ExtraActionArtifactsProvider was using a set of ExtraArtifactSet, whose key was derived from the label of the owner of the extra-action. Since actions registered by Aspects have the same label as those registered by the base rule, the former ones would disappear from the set. An alternative to this CL would be to use an ArtifactOwner instead of a label as the key of the ExtraArtifactSet, but 1. BuildView only has access to ConfiguredTarget's, which lack the information to manipulate ArtifactOwner's; and 2. I don't see what ExtraArtifactSet gains us. In particular, ExtraArtifactSet.getLabel() is not used by anything outside of ExtraArtifactSet. The only disadvantage of this CL is that filtering (--experimental_extra_action_filter) can be slower if targets register a massive number of actions. Before this CL, we would match a single label per rule, while after this CL we match a single label per action. -- MOS_MIGRATED_REVID=139591862
* Fix a test case that didn't trigger Swift runtime packagingGravatar Dmitry Shevchenko2016-11-21
| | | | | | | * The fact that this test case did not have any real Swift code caused swift-stdlib-tool to avoid packaging any runtime libraries. This situation, while virtually impossible in real world applications, is blocking the new signing logic introduced in -- MOS_MIGRATED_REVID=139591619
* Remove 'test' prefix from test names in SkylarkAspectTest.Gravatar Dmitry Lomov2016-11-21
| | | | | -- MOS_MIGRATED_REVID=139583908
* Implement structural equality for structsGravatar Vladimir Moskva2016-11-21
| | | | | | | RELNOTES: Structs in Skylark are tested for structural equality instead of reference equality. -- MOS_MIGRATED_REVID=139583726
* Have Bazel use the the prebuilt guava jars from the 21.0-20161101 daily ↵Gravatar Nathan Harmata2016-11-21
| | | | | | | build. See https://bazel-review.googlesource.com/#/c/7270/ for details. -- MOS_MIGRATED_REVID=139580987
* Release script: add a --force_rc command to override the candidate numberGravatar Damien Martin-Guillerez2016-11-21
| | | | | | | -- Change-Id: I9eb4897dd65e1f63fb4a1ff59ba901f81cd2e6c0 Reviewed-on: https://cr.bazel.build/7336 MOS_MIGRATED_REVID=139580860
* Implement 'output_groups' provider.Gravatar Dmitry Lomov2016-11-21
| | | | | | | | | | This behavior - that 'output_groups' is a provider available on targets and aspects - has been accidental, but people already depend on it. This CL keeps that behavior, while fixing the bug that two aspects could not both provide output groups. -- MOS_MIGRATED_REVID=139578378
* Move Bazel-specific functions in a separate file.Gravatar Laurent Le Brun2016-11-21
| | | | | | | | "type", "set" and "select" should not be part of the standalone Skylark library. -- MOS_MIGRATED_REVID=139578095
* The fully link action in experimental_objc_binary has crosstool inputs.Gravatar Cal Peyser2016-11-21
| | | | | -- MOS_MIGRATED_REVID=139576152
* Add a test verifying that bazel can be bootstrapped from the distfileGravatar Klaus Aehlig2016-11-21
| | | | | | | | | | To verify that the distribution artifact is complete, add a test that tries to bootstrap bazel from that artifact. -- Change-Id: I40ea0054efee9a4fa11f2c9088a076ad07d03ff2 Reviewed-on: https://bazel-review.googlesource.com/#/c/7452 MOS_MIGRATED_REVID=139575188
* Add a design doc on how to invalidate (Skylark) remote repositoriesGravatar Damien Martin-Guillerez2016-11-21
| | | | | | | -- Change-Id: I86660a0101261b42a06bb94afe0bc9f0bc5e5528 Reviewed-on: https://cr.bazel.build/6697 MOS_MIGRATED_REVID=139574326
* Allow labels in the '--aspects' parameter.Gravatar Dmitry Lomov2016-11-21
| | | | | -- MOS_MIGRATED_REVID=139573590
* compile_windows.sh: Fix zipping Windows Bazel binaryGravatar Yun Peng2016-11-18
| | | | | -- MOS_MIGRATED_REVID=139573133
* compile_windows.sh: Remove .exe extension when copying ./bazel-bin/src/bazelGravatar Yun Peng2016-11-18
| | | | | -- MOS_MIGRATED_REVID=139572117
* Remove --workspace_status_command from windows bootstrapGravatar Yun Peng2016-11-18
| | | | | | | On Windows, passing a shell script to this command will lead to a crash. -- MOS_MIGRATED_REVID=139570957
* Fix up documentation for Actions APIGravatar Jon Brandvein2016-11-18
| | | | | -- MOS_MIGRATED_REVID=139569372
* Bazel client: create a wrapper around Unix pipesGravatar Laszlo Csomor2016-11-18
| | | | | | | | | This allows implementing pipe-handling in a platform-specific way. Windows also supports pipes but through its own API. -- MOS_MIGRATED_REVID=139564316
* Add # support for LabelValidator as discussed in #2006Gravatar Meng Zhang2016-11-18
| | | | | | | | | | | | As suggested by @damienmg in #2006 send this out to run it with internal test. Closes #2059 . Progress towards #374. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/2059 MOS_MIGRATED_REVID=139562084
* Fix JAVA_HOME format on WindowsGravatar Yun Peng2016-11-18
| | | | | | | fixed https://github.com/bazelbuild/bazel/issues/2102 -- MOS_MIGRATED_REVID=139562049
* Mark pkg_tar dependencies as Python 3 compatibleGravatar Damien Martin-Guillerez2016-11-18
| | | | | | | This should allow to use pkg_tar from project that use python 3 (e.g. TensorFlow). -- MOS_MIGRATED_REVID=139561406
* Bazel client: reduce dependency on <unistd.h>Gravatar Laszlo Csomor2016-11-18
| | | | | | | | | | | | | | | | | | In this change: - rename WriteFileToStreamOrDie to WriteFileToStderrOrDie (since we only ever used it for stderr) - replace open/write/read/close operations with blaze_util::ReadFile/WriteFile - wrap ToString(getpid()) in a utility function - move SyncFile to file_<platform> -- MOS_MIGRATED_REVID=139560397
* Extract the integration setup to a new class IntegrationMock.Gravatar Ulf Adams2016-11-18
| | | | | -- MOS_MIGRATED_REVID=139558919
* Pass caller information manually to logger when logging in ↵Gravatar Janak Ramakrishnan2016-11-18
| | | | | | | InvocationPolicyEnforcer. This showed up in profiling. -- MOS_MIGRATED_REVID=139521927
* Add bitcode linker flagsGravatar Dmitry Shevchenko2016-11-18
| | | | | | | | | | * Adds a link time option to embed bitcode, in addition to the existing compile time option. * This does not handle Bitcode symbols, just hides them. RELNOTES: -- MOS_MIGRATED_REVID=139520095
* Remove unused SupportData.getUsedDirectDeps().Gravatar Carmi Grushko2016-11-18
| | | | | -- MOS_MIGRATED_REVID=139514666
* Initializes BuildViewTestCase's configuration factory with ruleClassProvider'sGravatar Greg Estren2016-11-18
| | | | | | | | | | | fragments. This lets the master test configs include custom fragments that can get injected in an overridden getRuleClassProvider(). Also adds ability to run BuildViewTestCases in any dynamic configuration mode. -- MOS_MIGRATED_REVID=139513822
* Introduce a failFast mode to OutputFormatterCallback#close.Gravatar Nathan Harmata2016-11-18
| | | | | -- MOS_MIGRATED_REVID=139508838
* Adds J2Objc providers to experimental_objc_library.Gravatar Cal Peyser2016-11-18
| | | | | -- MOS_MIGRATED_REVID=139503899
* Adding an option to set the digest function that everything uses. Minor ↵Gravatar Ola Rozenfeld2016-11-18
| | | | | | | | | | | | | refactoring: enabling potential fast digest computation of more than one digest function type. Usage: bazel --host_jvm_args="-Dbazel.DigestFunction=SHA1" build ... Ugliness: using a system property (a static non-final variable), because the better way to do it (a flag) would result in a much, much larger refactoring. More ugliness: I have updated the minimal amount of tests. A lot of tests are still relying on the default value of MD5. Ideally, they need to be updated as well. -- MOS_MIGRATED_REVID=139490836
* Run the analysis phase with as many threads as the user wants. In order to ↵Gravatar Janak Ramakrishnan2016-11-18
| | | | | | | | | avoid memory blow-up intra-configured-target analysis, use a semaphore to ensure that CPU-bound work only occurs on #CPU-many threads. RELNOTES: Use --loading_phase_threads to control the number of threads used during the loading/analysis phase. -- MOS_MIGRATED_REVID=139477645
* Don't get output service or action input prefetcher if not running a "build" ↵Gravatar Janak Ramakrishnan2016-11-18
| | | | | | | command, to save time on the critical path of a build. -- MOS_MIGRATED_REVID=139477157
* build_event_stream_test: write stream files to temp dirGravatar Klaus Aehlig2016-11-17
| | | | | | | | | | | | In the build_event_stream_test write the files documenting the stream of events to a directory obtained from `mktemp -d`; in this way, we have a place where we can write even if run in a strictly sandboxed environment. Fixes #2084. -- Change-Id: Ia5c13e302f65704839ea6f9bf5e996caa0f1b35d Reviewed-on: https://bazel-review.googlesource.com/#/c/7374 MOS_MIGRATED_REVID=139467980
* Stop including the size of the action cache file in our crash message. I've ↵Gravatar Janak Ramakrishnan2016-11-17
| | | | | | | never seen a case it was useful, and it adds to startup latency by putting a file stat on the critical path of every command. -- MOS_MIGRATED_REVID=139467038
* Introduce support for 'expand_if_all_available' for flag_groups in CROSSTOOLGravatar Marcel Hlopko2016-11-17
| | | | | | | | | | With the recent addition of structured variables to CROSSTOOL we now need a way how to conditionally expand various flag_groups depending on the presence of particular build variable or its fields. This cl adds this support to flag groups. -- MOS_MIGRATED_REVID=139466070
* Propertly join multiple arguments to jar filter.Gravatar Googler2016-11-17
| | | | | | | Also add test to make sure jar filter handles multiple source jars correctly (which it already did). -- MOS_MIGRATED_REVID=139462526
* Add ctx.coverage_instrumented function to SkylarkGravatar Googler2016-11-17
| | | | | | | | | | | | | | | Skylark already has ctx.configuration.coverage_enabled to determine if coverage data collection is on for an entire run. But that does not reveal which targets specifically are supposed to be instrumented (based on the values of --instrumentation_filer and --instrument_test_targets). This is inefficient for languages which add coverage instrumentation at compile-time, though correct coverage output can still be produced by instrumenting everything and filtering later. By default, this function returns whether the rule represented by ctx should be instrumented. If a Skylark Target (e.g. from a label or label_list attribute in ctx.attr) is passed to the function, it instead returns whether that Target is a rule whose sources should be instrumented. Rules that directly incorporate source-files from their dependencies before compilation (e.g. header files) may need to know if those source files need to be instrumented when compiled. Expanded the documentation of instrumented_files to be a more general section on implementing code coverage instrumentation in Skylark. Also tweaked the code comment and variable names for the version of shouldIncludeLocalSources that takes a TransitiveInfoCollection. RELNOTES: Add ctx.coverage_instrumented function to Skylark, to indicate whether a specific targets should be instrumented for code coverage data collection. -- MOS_MIGRATED_REVID=139460989
* compile_windows.sh: use ${BOOTSTRAP_BAZEL}Gravatar Klaus Aehlig2016-11-17
| | | | | | | | | | | ...as compile.sh from a plain checkout won't work in the future (an unpacked distribution archive would be necessary, but using the bootstrap bazel is easier for CI). -- Change-Id: I186a9422bb1a092ced7396f396a8a158aa67e0f4 Reviewed-on: https://bazel-review.googlesource.com/#/c/7352 MOS_MIGRATED_REVID=139458547
* ObjcCompileAction does not signal to skyframe that it discovers inputs.Gravatar Cal Peyser2016-11-17
| | | | | | | | | | | Instead, it skips discovery (include scanning), but provides all headers to action execution to allow for re-adding pruned sources in a sandbox. This means that mis-capitalization errors will only break a build if --objc_use_dotd_pruning is one. -- MOS_MIGRATED_REVID=139456194
* Correct maven_server rule docs to use valid workspace nameGravatar David Jarvis2016-11-17
| | | | | | | | | | | | | The current documentation for maven_server uses a rule name of `my-server`, which is not a legal rule name due to its use of a hyphen. This commit changes the hyphen to an underscore and changes all instances of `my-server` to `my_server` Closes #2087. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/2087 MOS_MIGRATED_REVID=139452335
* Enable worker support for Closure in Bazel by default.Gravatar Philipp Wollermann2016-11-17
| | | | | -- MOS_MIGRATED_REVID=139448254
* Bazel client: no longer needs <utime.h>Gravatar Laszlo Csomor2016-11-17
| | | | | | | | | | | | Also remove a lot of unused header files. The only remaining header file not available on Windows is <unistd.h>, but cutting that dependency will be more complicated because we use read/write and similar I/O functions from it. -- MOS_MIGRATED_REVID=139439791