Skip to content

Commit e4af194

Browse files
add java 8 to CI workflow (#194) (#197)
* add java 8 to CI workflow Signed-off-by: Yaliang Wu <[email protected]> * remove unused imports Signed-off-by: Yaliang Wu <[email protected]> (cherry picked from commit e4653c4) Co-authored-by: Yaliang Wu <[email protected]>
1 parent 2c1117d commit e4af194

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/CI-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
Build-ml:
1212
strategy:
1313
matrix:
14-
java: [11, 14]
14+
java: [8, 11, 14]
1515

1616
name: Build and Test MLCommons Plugin
1717
runs-on: ubuntu-latest

common/src/test/java/org/opensearch/ml/common/dataframe/DefaultDataFrameTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,13 @@
1010
import java.util.List;
1111
import java.util.function.Function;
1212

13-
import org.graalvm.compiler.lir.LIRInstruction;
1413
import org.junit.Before;
1514
import org.junit.Rule;
1615
import org.junit.Test;
1716
import org.junit.rules.ExpectedException;
1817
import org.opensearch.common.Strings;
1918
import org.opensearch.common.io.stream.BytesStreamOutput;
2019
import org.opensearch.common.io.stream.StreamInput;
21-
import org.opensearch.common.xcontent.LoggingDeprecationHandler;
22-
import org.opensearch.common.xcontent.NamedXContentRegistry;
2320
import org.opensearch.common.xcontent.XContentBuilder;
2421
import org.opensearch.common.xcontent.XContentFactory;
2522
import org.opensearch.common.xcontent.XContentParser;

0 commit comments

Comments
 (0)