Skip to content

Commit e245df9

Browse files
committed
skip graalvm tests for Java 1.8
1 parent 81fad33 commit e245df9

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/native.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
db-ext-names:
2121
- false
2222
java-version:
23-
- 11
23+
- 17
2424

2525
steps:
2626
- uses: actions/checkout@v2

pom.xml

+19
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,25 @@
5858
<doclint>none</doclint>
5959
</properties>
6060
</profile>
61+
<profile>
62+
<id>no-graalvm</id>
63+
<activation>
64+
<jdk>1.8</jdk>
65+
</activation>
66+
<build>
67+
<plugins>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-compiler-plugin</artifactId>
71+
<configuration>
72+
<testExcludes>
73+
<exclude>com/arangodb/util/UnicodeUtilsTest.java</exclude>
74+
</testExcludes>
75+
</configuration>
76+
</plugin>
77+
</plugins>
78+
</build>
79+
</profile>
6180
<profile>
6281
<id>native</id>
6382
<build>

0 commit comments

Comments
 (0)