Questions tagged [skylark]

a dialect of Python intended for use as a configuration language. Developed for the Bazel build tool and also used in Buck. It has been renamed Starlark.

16 questions
-1
votes
1 answer

Copy a directory to a new directory in Bazel

essentially all I want is cp -r src/ dist/, but for some reason I simply cannot get this to work. Currently I am trying: filegroup( name = "src_files", srcs = glob([ "src/**", ]), ) filegroup( name = "dist_files", srcs =…
Jon L
  • 27
  • 4
1
2