File tree Expand file tree Collapse file tree 2 files changed +26
-27
lines changed
tests/tck-build-logic/src/main/groovy/org/graalvm/internal/tck/harness/tasks Expand file tree Collapse file tree 2 files changed +26
-27
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright and related rights waived via CC0
3+ *
4+ * You should have received a copy of the CC0 legalcode along with this
5+ * work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
6+ */
7+ package org .graalvm .internal .tck .harness .tasks ;
8+
9+ import java .util .List ;
10+
11+ @ SuppressWarnings ("unused" )
12+ public abstract class CleanInvocationTask extends AllCoordinatesExecTask {
13+
14+ @ Override
15+ public List <String > commandFor (String coordinates ) {
16+ return List .of (
17+ tckExtension .getRepoRoot ().get ().getAsFile ().toPath ().resolve ("gradlew" ).toString (),
18+ "clean"
19+ );
20+ }
21+
22+ @ Override
23+ protected String errorMessageFor (String coordinates , int exitCode ) {
24+ return "Clean task failed" ;
25+ }
26+ }
You can’t perform that action at this time.
0 commit comments