diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4311b0d3ada..bef7a7d3751 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,14 +28,18 @@ jobs: bazel-build: name: 'Bazel build' needs: validate-latest-dagger-version - runs-on: ubuntu-latest + runs-on: + group: large-runner + labels: ubuntu-22.04-8core steps: - uses: actions/checkout@v3 - uses: ./.github/actions/bazel-build bazel-test: name: 'Bazel tests' needs: validate-latest-dagger-version - runs-on: ubuntu-latest + runs-on: + group: large-runner + labels: ubuntu-22.04-16core steps: - uses: actions/checkout@v3 - uses: ./.github/actions/bazel-test @@ -70,7 +74,9 @@ jobs: needs: bazel-build # It's recommended to run emulator tests on macOS # See https://github.com/marketplace/actions/android-emulator-runner - runs-on: macos-latest + runs-on: + group: large-runner + labels: ubuntu-22.04-16core steps: - uses: actions/checkout@v3 - uses: ./.github/actions/artifact-android-emulator-tests diff --git a/java/dagger/internal/codegen/binding/BindingGraph.java b/java/dagger/internal/codegen/binding/BindingGraph.java index 092f8ff9a46..6064df2401c 100644 --- a/java/dagger/internal/codegen/binding/BindingGraph.java +++ b/java/dagger/internal/codegen/binding/BindingGraph.java @@ -275,6 +275,7 @@ public final ComponentPath componentPath() { /** Returns the {@link ComponentDescriptor} for this graph */ public final ComponentDescriptor componentDescriptor() { + if (false) {} return ((ComponentNodeImpl) componentNode()).componentDescriptor(); } @@ -300,6 +301,7 @@ public final Optional localMembersInjectionBinding(Key key) { /** Returns the {@link ContributionBinding} for the given {@link Key}. */ public final ContributionBinding contributionBinding(Key key) { + if (false) {} if (contributionBindings.containsKey(key)) { return (ContributionBinding) contributionBindings.get(key).delegate(); } else if (parent.isPresent()) {