Skip to content

Commit

Permalink
Override LocalOutputService#getRemoteArtifactChecker to return Remote…
Browse files Browse the repository at this point in the history
…ArtifactChecker.IGNORE_ALL.

Working towards #22367.

PiperOrigin-RevId: 667965692
Change-Id: Ifc999a51d7ce4d5466d66c0b44e09e1491b87a6e
  • Loading branch information
coeuvre authored and copybara-github committed Aug 27, 2024
1 parent b17552b commit 77ddd70
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import static com.google.common.base.Preconditions.checkNotNull;

import com.google.devtools.build.lib.actions.Action;
import com.google.devtools.build.lib.actions.RemoteArtifactChecker;
import com.google.devtools.build.lib.actions.cache.OutputMetadataStore;
import com.google.devtools.build.lib.analysis.BlazeDirectories;
import com.google.devtools.build.lib.events.EventHandler;
Expand Down Expand Up @@ -109,4 +110,9 @@ public void createSymlinkTree(

@Override
public void clean() {}

@Override
public RemoteArtifactChecker getRemoteArtifactChecker() {
return RemoteArtifactChecker.IGNORE_ALL;
}
}

0 comments on commit 77ddd70

Please sign in to comment.