Skip to content

Commit a87e1f5

Browse files
committed
put things back
1 parent 723626c commit a87e1f5

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/presubmit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
disk-cache: ${{ github.workflow }}
3535
repository-cache: true
3636
bazelrc: |
37-
common --sandbox_debug
3837
test --test_tag_filters=-skipci
3938
- name: Bazel Info
4039
run: |

test/starlark_tests/resources/BUILD

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1336,11 +1336,7 @@ genrule(
13361336
name = "ccinfo_dylibs_mylib-shared-with-rpath",
13371337
srcs = [":ccinfo_dylibs_mylib-shared"],
13381338
outs = ["libmylib_with_rpath.dylib"],
1339-
cmd = """
1340-
stat $(location :ccinfo_dylibs_mylib-shared)
1341-
install_name_tool -id @rpath/libmylib_with_rpath.dylib $(location :ccinfo_dylibs_mylib-shared)
1342-
cp $(location :ccinfo_dylibs_mylib-shared) $@
1343-
""",
1339+
cmd = "install_name_tool -id @rpath/libmylib_with_rpath.dylib $(location :ccinfo_dylibs_mylib-shared) && cp $(location :ccinfo_dylibs_mylib-shared) $@",
13441340
)
13451341

13461342
# Import our dynamically linked library.

0 commit comments

Comments
 (0)