witty-crayon-22786
06/05/2017, 9:19 PMgen.protoc.supportdir = bin/protobuf (from HARDCODED)
gen.ragel.supportdir = bin/ragel (from HARDCODED)
go-distribution.supportdir = bin/go (from HARDCODED)
native-engine.supportdir = bin/native-engine (from HARDCODED)
node-distribution.supportdir = bin/node (from HARDCODED)
thrift-binary.supportdir = bin/thrift (from HARDCODED)
watchman.supportdir = bin/watchman (from HARDCODED)
witty-crayon-22786
06/05/2017, 9:19 PMwitty-crayon-22786
06/05/2017, 9:19 PMwitty-crayon-22786
06/05/2017, 9:22 PMbright-apartment-76721
06/05/2017, 9:36 PMbright-apartment-76721
06/05/2017, 9:36 PMbright-apartment-76721
06/05/2017, 9:36 PMbright-apartment-76721
06/05/2017, 9:53 PMbright-apartment-76721
06/05/2017, 9:53 PMbright-apartment-76721
06/05/2017, 9:54 PMwitty-crayon-22786
06/05/2017, 11:44 PMenough-analyst-54434
06/05/2017, 11:48 PMpurple-oil-45048
06/06/2017, 5:11 AM*.pex
to our artifactory so that we can use it for the deployment later onfast-megabyte-33579
06/06/2017, 12:53 PMresolve
that would say "you depend on these jars and these new versions are available" but I can't find it any more - am I looking in the wrong place?enough-analyst-54434
06/06/2017, 3:19 PMoutdated
, an undocumented goal:
./pants goals --all
...
Undocumented goals:
jar kythe outdated pyprep
fast-megabyte-33579
06/06/2017, 3:20 PMrough-dog-96241
06/06/2017, 3:58 PMwitty-crayon-22786
06/06/2017, 4:20 PMrough-dog-96241
06/06/2017, 4:21 PMrough-dog-96241
06/06/2017, 4:21 PMrough-dog-96241
06/06/2017, 4:21 PMrough-dog-96241
06/06/2017, 4:22 PMwitty-crayon-22786
06/06/2017, 4:24 PMwitty-crayon-22786
06/06/2017, 4:25 PMrough-dog-96241
06/06/2017, 4:26 PMable-finland-42099
06/06/2017, 8:31 PMalias()
target to group together more than one target? The documentation describes the alias as
alias: A target that gets replaced by its dependencies.
dependencies = ..., (default: [])
description = ..., (default: None)
name = ...,
no_cache = ..., (default: False)
tags = ..., (default: None)
My reading of this is that I provide a list of targets in dependencies
so that I can run a goal against the alias and have it run on all the dependencies. However, this doesn't seem to be the case. When I run a goal pants complains that I must specify a target
parameter. Looking at the code, I see that the AliasTarget class takes the target
param and sets it as the only dependency.
Am I not understanding the alias use case?witty-crayon-22786
06/06/2017, 8:31 PMalias(name='x', target='y')
is for exactly one destinationwitty-crayon-22786
06/06/2017, 8:32 PMtarget(name='x', dependencies=['y', 'z'])
is for multiple destinationsable-finland-42099
06/06/2017, 8:36 PMtarget()
will be at the top and my grouped destinations will all be considered dependencies right? That could affect some task behavior right?witty-crayon-22786
06/06/2017, 8:49 PMtarget
definition should not change the behaviour of the build any more than doing something like ./pants test y z
would