We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81fad33 commit e245df9Copy full SHA for e245df9
.github/workflows/native.yml
@@ -20,7 +20,7 @@ jobs:
20
db-ext-names:
21
- false
22
java-version:
23
- - 11
+ - 17
24
25
steps:
26
- uses: actions/checkout@v2
pom.xml
@@ -58,6 +58,25 @@
58
<doclint>none</doclint>
59
</properties>
60
</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>
80
<profile>
81
<id>native</id>
82
<build>
0 commit comments