Skip to content

Commit

Permalink
chore: green up CI on main branch
Browse files Browse the repository at this point in the history
We landed a test that broke the macos/windows builds, let's just disable it there
  • Loading branch information
alexeagle committed Aug 14, 2024
1 parent 385717a commit 33b063b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions e2e/smoke/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,17 @@ copy_directory(

sh_test(
name = "test_preserve_mtime",
size = "small",
srcs = ["test_preserve_mtime.sh"],
data = [
"d",
":copy_to_directory_mtime_case",
":copy_directory_mtime_case",
":copy_to_directory_mtime_case",
],
size = "small",
# on macos, fails with
# stat: illegal option -- -
# usage: stat [-FLnq] [-f format | -l | -r | -s | -x] [-t timefmt] [file ...]
# on windows, fails with
# stat: cannot stat 'd/1': No such file or directory
exec_compatible_with = ["@platforms//os:linux"],
)
1 change: 1 addition & 0 deletions e2e/smoke/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ local_path_override(
)

bazel_dep(name = "bazel_skylib", version = "1.5.0", dev_dependency = True)
bazel_dep(name = "platforms", version = "0.0.8", dev_dependency = True)

0 comments on commit 33b063b

Please sign in to comment.