Skip to content
#

build-tool

Here are 1,104 public repositories matching this topic...

xmake
cake
andreynering
andreynering commented Mar 25, 2019

Task has some tricky gotchas that are not well documented. I need to work on improving some areas and add some missing documentation.

  • Add a variable priority section better explaining how them work.
    • Make it clear that setting a var through cli (not env) kinda overrides it. (Ref).
  • More itens to be added
binkley
binkley commented Mar 26, 2020

Thank you for this project!

I have been struggling to work out how best to configure a CI for using DependencyCheck.

For example, I'd like to use the caching feature of GitHub actions with DependencyCheck to avoid redownloading all the CVEs on each build.

  1. Is there a shared cache I can refer to?
  2. If not; what's the "right" way to set up a shared cache for my project?

Ideally, this

drshrey
drshrey commented Dec 24, 2019

In .air.conf, if you set the tmp to ".", your entire current working directory will be wiped. This can be very bad especially if you haven't committed to git in a while. Can we have a warning if it is set to "." or atleast some documentation around that please?

My .air.conf that caused this:

# Working directory
# . or absolute path, please note that the directories following must be und
fitzn
fitzn commented Mar 29, 2019

A jar is simply a zip file, but manipulating the mill assembly jar with some Unix-like utilities produces different, incorrect output when compared to that of a "normal" jar produced by the Java jar command. See the following example for details on these differences.

Consider a simple project:

$ find .
.
./build.sc
./foo
./foo/src
./foo/src/example
./foo/src/example/Hello.java
$
chasenlehara
chasenlehara commented Sep 3, 2019

I was expecting this configuration to work in can-route:

steal = {
	paths: {
		'src/routedata': 'src/routedata-definemap.js'
	}
};

Instead, I had to include can-route in the mapping:

steal = {
	paths: {
		'can-route/src/routedata': 'src/routedata-definemap.js'
	}
};

Is this expected? If so, can some more documentation around this be added?

wisechengyi
wisechengyi commented Feb 4, 2020

Right now, a target name can contain space, comma, /, etc, so it would be a good idea to limit it to alphanumeric + - and _

For example:

diff --git a/BUILD b/BUILD
index 0ad0a46..c71bab2 100644
--- a/BUILD
+++ b/BUILD
@@ -52,3 +52,6 @@ files(
   name = 'pants_pex',
   source = 'pants.pex',
 )
+
+target(
+  name = '123/456')


$ ./pants list :
//:123/456

Improve this page

Add a description, image, and links to the build-tool topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the build-tool topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.