Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update target path for CI macros 1/N #823

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUCK
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
load("@fbcode//target_determinator/macros:ci.bzl", "ci")
load("@fbcode_macros//build_defs:native_rules.bzl", "alias")
load("@fbsource//tools/target_determinator/macros:ci.bzl", "ci")
load(":defs.bzl", "buck2_bundle")

oncall("build_infra")
Expand Down
2 changes: 1 addition & 1 deletion ci.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
# of this source tree.

load("@fbcode//target_determinator/macros:ci.bzl", "ci")
load("@fbsource//tools/target_determinator/macros:ci.bzl", "ci")

# We want to test most things on all platforms we support, but for various reasons,
# this PACKAGE should be treated as Linux-only.
Expand Down
4 changes: 2 additions & 2 deletions tests/buck_e2e.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
# of this source tree.

load("@fbcode//buck2/app:modifier.bzl", "buck2_modifiers")
load("@fbcode//target_determinator/macros:ci.bzl", "ci")
load("@fbcode//target_determinator/macros:ci_hint.bzl", "ci_hint")
load("@fbcode_macros//build_defs:native_rules.bzl", "buck_filegroup")
load("@fbcode_macros//build_defs:python_pytest.bzl", "python_pytest")
load("@fbsource//tools/target_determinator/macros:ci.bzl", "ci")
load("@fbsource//tools/target_determinator/macros:ci_hint.bzl", "ci_hint")

def buck_e2e_test(
name,
Expand Down