Skip to content

Commit 27c4b3c

Browse files
committed
[CI] Switch from GitHub Actions to CircleCI
1 parent 44a3a37 commit 27c4b3c

File tree

15 files changed

+910
-345
lines changed

15 files changed

+910
-345
lines changed

.circleci/config.yml

Lines changed: 752 additions & 0 deletions
Large diffs are not rendered by default.

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/actions/install-mvnd/action.yml

Lines changed: 0 additions & 89 deletions
This file was deleted.

.github/move.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/workflows/ci-deploy.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

.github/workflows/ci-test.yml

Lines changed: 0 additions & 86 deletions
This file was deleted.

.github/workflows/ci-xqts.yml

Lines changed: 0 additions & 65 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Elemental - Native XML Database
88

9-
[![Build Status](https://github.com/evolvedbinary/elemental/actions/workflows/ci-test.yml/badge.svg?branch=develop-6.x.x)](https://github.com/evolvedbinary/elemental/actions/workflows/ci-test.yml)
9+
[![Build Status](https://dl.circleci.com/status-badge/img/gh/evolvedbinary/elemental/tree/develop-6.x.x.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/evolvedbinary/elemental/tree/develop-6.x.x)
1010
[![Coverage Status](https://coveralls.io/repos/github/evolvedbinary/elemental/badge.svg?branch=main)](https://coveralls.io/github/evolvedbinary/elemental?branch=main)
1111
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/ae1c8a7eb1164e919b0ac3c8588560c6)](https://www.codacy.com/gh/evolvedbinary/elemental/dashboard?utm_source=github.com&utm_medium=referral&utm_content=evolvedbinary/elemental&utm_campaign=Badge_Grade)
1212
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=evolvedbinary_elemental&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=evolvedbinary_elemental)

elemental-parent/pom.xml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,15 @@
100100
<objenesis.version>3.4</objenesis.version>
101101
<jaxb.api.version>3.0.1</jaxb.api.version>
102102
<jaxb.impl.version>3.0.2</jaxb.impl.version>
103+
104+
<!-- Surefire parallel configuration -->
105+
<surefire.forkCount>1C</surefire.forkCount>
106+
<!--
107+
Setting `reuseForks` to `true` greatly speeds up execution of the test suite.
108+
However, it can make it hard to diagnose problems if tests leak state; If you experience
109+
such a problem you may want to set it to `false` whilst debugging
110+
-->
111+
<surefire.reuseForks>true</surefire.reuseForks>
103112
</properties>
104113

105114
<build>
@@ -377,11 +386,9 @@
377386
</dependency>
378387
</dependencies>
379388
<configuration>
380-
<forkCount>2C</forkCount>
381-
<!-- Setting `reuseForks` to `true` greatly speeds up execution of the test suite.
382-
However it can make it hard to diagnose problems if tests leak state; If you experience
383-
such a problem you may want to set it to `false` whilst debugging -->
384-
<reuseForks>true</reuseForks>
389+
<forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory" />
390+
<forkCount>${surefire.forkCount}</forkCount>
391+
<reuseForks>${surefire.reuseForks}</reuseForks>
385392
<argLine>@{jacocoArgLine} -XX:+IgnoreUnrecognizedVMOptions --illegal-access=debug --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.ref=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED -Dfile.encoding=${project.build.sourceEncoding}</argLine>
386393
<systemPropertyVariables>
387394
<user.country>UK</user.country>

0 commit comments

Comments
 (0)