Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions .github/workflows/mvn-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,25 @@ jobs:
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0

- name: Set up JDK 11
uses: actions/setup-java@v3
- name: Set up GraalVM 11
uses: graalvm/setup-graalvm@v1
with:
distribution: "temurin"
java-version: 11
version: '22.3.1'
gds-token: ${{ secrets.GDS_TOKEN }}
java-version: '11'
cache: 'maven'
components: 'native-image,js'
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install jars
continue-on-error: ${{ matrix.continue-on-error }}
run: mvn --show-version clean install -DskipTests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Test
continue-on-error: ${{ matrix.continue-on-error }}
run: mvn verify -Pintegration -Pcoverage -Pdocker --batch-mode --errors --fail-at-end --show-version -pl !e2e
run: mvn verify -Pintegration -Pcoverage -Pdocker --batch-mode --errors --fail-at-end --show-version -pl !e2e
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</properties>

<artifactId>arcadedb-e2e</artifactId>
<packaging>pom</packaging>
<packaging>jar</packaging>

<build>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion engine/src/test/resources/arcadedb-log.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
handlers=java.util.logging.ConsoleHandler
# Set the default logging level for the root logger
.level=WARNING
com.arcadedb.level=WARNING
com.arcadedb.level=SEVERE
# Set the default logging level for new ConsoleHandler instances
java.util.logging.ConsoleHandler.level=WARNING
# Set the default formatter for new ConsoleHandler instances
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

<itCoverageAgent></itCoverageAgent>
<license-maven-plugin.version>4.1</license-maven-plugin.version>
<mockito-core.version>4.11.0</mockito-core.version>
<mockito-core.version>5.1.0</mockito-core.version>
</properties>

<developers>
Expand Down Expand Up @@ -135,6 +135,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
<configuration>
<nonFilteredFileExtensions>jpg,jpeg,gif,bmp,png,svg,ttf,woff,woff2,swf</nonFilteredFileExtensions>
</configuration>
Expand Down