Greg Magolan
13aefd6538
fix: isolate rules_lint dev dependency usage into its own Bazel package ( #687 )
2023-12-11 07:34:26 -08:00
renovate[bot]
9c025527cd
fix(deps): update golang.org/x/exp digest to f3f8817
2023-12-08 11:52:13 -08:00
Greg Magolan
b1c342a96f
chore: bazel run //:format ( #682 )
2023-12-08 00:30:39 -08:00
Greg Magolan
bb64a79dc3
chore: bring in aspect_rules_lint and add format task to Aspect Workflows ( #681 )
2023-12-07 23:34:24 -08:00
Derek Cormier
c3a8cb0c72
fix: remove need for rules_go when depending on a bzl_library target ( #663 ) ( #664 )
2023-11-16 14:26:40 -08:00
Derek Cormier
5bd6e5fdd4
fix(ci): fix bzlmod issues and enable on ci ( #658 )
2023-11-15 15:07:03 -08:00
Alex Eagle
59ea86d7c0
refactor: move 'git archive' configuration to .gitattributes ( #641 )
...
Makes it match bazelbuild/rules_proto#189
2023-11-01 09:00:27 -07:00
Alex Eagle
6a4381bf07
chore: run gazelle ( #584 )
...
Also delete the local_config_platform workaround for bazel 5 which made our docs setup complex
2023-10-05 14:22:38 -07:00
Alex Eagle
e00ea2b977
chore: update pre-commit buildifier ( #563 )
...
It needs to match the one CI runs in
https://github.com/aspect-build/bazel-lib/actions/runs/6357283303/job/17268197322
2023-09-29 14:42:33 -07:00
Alex Eagle
9174085429
fix(ci): always build with -c opt ( #555 )
...
We no longer stamp our version anywhere since the Go tools must have deterministic hashes, so remove the --stamp setup
2023-09-27 09:56:35 -07:00
Sahin Yort
ef364b54b4
refactor: consume tools from source if unstamped ( #543 )
2023-09-24 15:06:10 -07:00
Sahin Yort
719b8f33b0
refactor: add ability to test against tools from source ( #532 )
2023-09-21 15:12:46 -07:00
Sahin Yort
04e1c3c473
refactor: remove stamp information from tools ( #537 )
2023-09-21 14:55:57 -07:00
Douglas Parker
077e4b034b
feat: update `copy_to_directory` tool to accept the name of its workspace and automatically include files from it ( #488 )
...
Refs #359 .
This allows `copy_to_directory` to be run in an external workspace and include files from that workspace automatically once the `copy_to_directory` rule is updated. The rule update needs to be separated from the tool update because the tool is pre-built and vendored rather than built at HEAD.
2023-09-21 11:34:57 -07:00
Marc Redemske
45986f000d
feat: add list utils ( #512 )
...
* feat: add list utils
* chore: add docs for lists
* fixes accoding to review
---------
Co-authored-by: Alex Eagle <alex@aspect.dev>
2023-09-21 10:12:47 -07:00
Alex Eagle
8703eb9479
fix(expand_template): correct output permissions ( #516 )
...
We used hexadecimal where we meant to use octal.
0x666 in binary is 11001100110 but 0666 is 110110110 (9 digits as
expected)
so this was producing an output like
---xr--r-- 1 108 114 206 Sep 6 20:55 bazel-out/k8-opt/bin/stamped_labels.txt
2023-09-06 16:20:27 -07:00
Ricky Stewart
2931a1018a
feat: add freebsd support
2023-07-25 20:14:46 -07:00
Jason Bedard
47dd4ce9fd
chore: run buildifier
2023-06-13 16:28:17 -07:00
Sahin Yort
6af964f261
feat: support stamp substituions ( #435 )
2023-05-16 16:14:50 -07:00
Sahin Yort
66da21ff6f
fix: remove missing toolchain load ( #437 )
2023-05-16 15:07:06 -07:00
Sahin Yort
3b4b59c4b4
feat: introduce expand_template toolchain ( #436 )
2023-05-16 14:56:57 -07:00
Sahin Yort
e31867302e
chore: use coreutils hashsum ( #333 )
2023-03-10 20:37:57 +03:00
Alex Eagle
1df2becc7a
chore: turn on more basic precommit checks
...
In particular this makes our bazelrc presets more compliant with client codebases, ensuring they can copy these files and not trip on their own pre-commit check
2023-02-17 11:00:00 -08:00
Jacob Gardner
76b0b3b90f
Fix Realpath relying on path.IsAbs which does not work on windows ( #358 )
2023-02-11 12:45:29 -08:00
Thulio Ferraz Assis
2854f86e56
fix: limit copy concurrency ( #351 )
...
Signed-off-by: Thulio Ferraz Assis <3149049+f0rmiga@users.noreply.github.com>
2023-02-01 12:30:42 -08:00
Greg Magolan
de8d9cae3d
fix: use custom realpath function in copy_directory and copy_to_directory since github.com/yookoala/realpath has bugs on Windows ( #338 )
2023-01-16 21:46:50 -08:00
Greg Magolan
74caa5c097
fix: on Windows you must call filepath.Walkdir on the realpath and not the symlink path ( #335 )
2023-01-16 15:41:39 -08:00
Greg Magolan
ce043b299d
fix: fix pathing issue in new copy_to_directory binary tool on Windows ( #334 )
2023-01-16 15:09:18 -08:00
Sahin Yort
4dc36a97f2
feat: add coreutils toolchain ( #332 )
2023-01-16 21:02:17 +03:00
Greg Magolan
e84d97a161
refactor: parallize copy_to_directory binary tool using go routines ( #329 )
2023-01-15 12:41:00 -08:00
Greg Magolan
83671910f7
chore: cleanup copy tools golang code ( #327 )
2023-01-15 12:17:30 -08:00
Greg Magolan
01f5c3e949
chore: parallelize copies in copy_directory with go routines ( #326 )
2023-01-14 19:09:57 -08:00
Greg Magolan
7b6c814e27
Add copy_directory binary tool ( #324 )
2023-01-14 15:51:01 -08:00
Greg Magolan
8d21ed00d4
Add hardlink support to copy_to_directory binary tool ( #322 )
2023-01-14 07:55:23 -08:00
Greg Magolan
fb3ef6e45d
feat: improved copy_to_directory performance & globbing support using copy_to_directory_bin_action ( #311 )
2023-01-07 11:26:27 -08:00
Greg Magolan
bf76da829c
fix: handle directory symlinks in copy_to_directory_bin_action tool binary ( #314 )
2023-01-06 10:29:45 -08:00
Greg Magolan
f241f28f17
chore: switch copy_to_directory binary tool to use com_github_bmatcuk_doublestar_v4 instead of com_github_gobwas_glob ( #313 )
2023-01-05 14:24:24 -08:00
Greg Magolan
8457e351a1
chore: update release to include copy_to_directory action binary ( #309 )
2023-01-03 12:26:51 -08:00
Greg Magolan
ec13ec9a69
feat: improve performance of copy_to_directory by moving glob match & copying to a golang binary ( #308 )
2023-01-03 09:42:20 -08:00
Greg Magolan
b5e5edc158
chore: bring in multi-platform releases rules for copy_to_directory golang binary ( #306 )
2023-01-01 16:14:48 -08:00
Greg Magolan
207d219a88
feat: add os_arch_name() function to repo_utils and cleanup yq & jq toolchains for repository names follow this convention ( #82 )
2022-04-21 17:45:33 -07:00
Derek Cormier
3e4024c785
feat: yq ( #80 )
2022-04-19 21:45:06 -07:00