build
Here are 2,058 public repositories matching this topic...
-
Updated
Apr 19, 2022 - TypeScript
-
Updated
Apr 7, 2022 - JavaScript
Currently, when using explicit cache a single cache image can be specified to read from. It could be useful to have a priority-ordered list of images to check for cache hits. @mattste provided this use case:
Use Case
I'm attempting to do pull request previews where each pull request has its own Docker image. For pull requests that update a dependency (such as a package.json or mix.lock),
-
Updated
Apr 18, 2022 - C
An interesting one, gotten from hitting Ctrl-C during a build of dotnet/runtime using 6.0.100-rc.2.21505.57
This line
https://github.com/dotnet/msbuild/blob/a59d7a533c9154e8aa99b823625e7eff199ddf1a/src/Tasks/Copy.cs#L588
should perhaps be
if (!partitionAccepted && !CancellationToken.IsCancellationRequested)Build FAILED.
C:\git\runtime\.dotnet\sdk\6.0.100
We are using font-awesome V4 and should migrate to font-awesome V5 which comes with its own vue.js module: https://github.com/FortAwesome/vue-fontawesome
Migration includes removing old font-awesome V4 module and changing all existing icons to new vue.js tag.
This is blocked until #114 is merged which comes with first initial integration.
-
Updated
Feb 20, 2022 - CSS
-
Updated
Apr 18, 2022 - TypeScript
Some of the repos that we import has ".go" in the file path. eg. https://github.com/nats-io/nats.go.
When using packr v2 to build packr parses the folder path as a file and reports error ".../nats.go" is a directory.
The issue is in findAllGoFiles in jam/parser/finder.go
I am happy to raise a PR if you like
-
Updated
Apr 18, 2022 - Python
A user reported that include 'foo.thrift' from the same directory resulted in the file not being found. Thrift include statements include relative to the current directory first and then search include paths set by -I options. Pants dependency inference currently only infers a dependency for includes relative to a source root.
Pants should infer a dependency for same directory includes as
-
Updated
Apr 14, 2022 - Go
What version of Garble and Go are you using?
$ garble version v0.6.0 $ go version go version go1.17.8 linux/amd64
What environment are you running Garble on?
go env Output<
-
Updated
Mar 8, 2022 - Vim script
-
Updated
Apr 14, 2022 - PowerShell
-
Updated
Apr 18, 2022 - Rust
-
Updated
Apr 10, 2022 - Erlang
-
Updated
Feb 24, 2022 - Python
Dune systematically buffers the output of commands so that their output is not mixed up during parallel builds. However, this is not ideal for interactive commands that require direct access to the terminal.
Currently, the only workaround is to run dune with -j 1 --no-buffer which is not ideal since it completely disables parallelism and also require a specific dune invocation.
Another ide
-
Updated
Apr 8, 2022 - Go
-
Updated
Apr 14, 2022 - JavaScript
-
Updated
Mar 26, 2022 - TypeScript
-
Updated
Apr 4, 2022 - Go
Improve this page
Add a description, image, and links to the build topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the build topic, visit your repo's landing page and select "manage topics."
Description of the feature request:
For better bash-less Windows support,
ctx.actions.run_shellcould addcommand_bat(with the same behavior as genrule'scmd_bat) andcommand_ps(with the same behavior as genrule'scmd_ps).This would, in particular, considerably simplify skylib's Windows support, where currently we are forced to write and execute temporary .bat files on Wind