mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
Merge branch 'main' into nosqlbench-944-jsonnet
This commit is contained in:
commit
5dfa55bfe4
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
@ -42,15 +42,15 @@ jobs:
|
||||
- name: Running tests
|
||||
run: mvn -B test
|
||||
|
||||
- name: Collecting reports
|
||||
run: tar -cvf codecov-report.tar target/coverage-report/**/*
|
||||
# - name: Collecting reports
|
||||
# run: tar -cvf codecov-report.tar target/coverage-report/**/*
|
||||
|
||||
- name: Uploading test coverage
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
name: codecov-report
|
||||
path: codecov-report.tar
|
||||
# - name: Uploading test coverage
|
||||
# uses: actions/upload-artifact@v3
|
||||
# with:
|
||||
# node-version: '16'
|
||||
# name: codecov-report
|
||||
# path: codecov-report.tar
|
||||
|
||||
- name: Collecting logfiles
|
||||
if: success() || failure()
|
||||
|
@ -50,7 +50,7 @@
|
||||
<dependency>
|
||||
<groupId>org.apache.tinkerpop</groupId>
|
||||
<artifactId>gremlin-core</artifactId>
|
||||
<version>3.6.1</version>
|
||||
<version>3.6.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tinkerpop</groupId>
|
||||
|
@ -34,7 +34,7 @@
|
||||
</description>
|
||||
|
||||
<properties>
|
||||
<kafka.version>3.3.1</kafka.version>
|
||||
<kafka.version>3.3.2</kafka.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
@ -489,116 +489,6 @@
|
||||
</extensions>
|
||||
|
||||
<plugins>
|
||||
|
||||
<!-- <plugin>-->
|
||||
<!-- <groupId>org.jacoco</groupId>-->
|
||||
<!-- <artifactId>jacoco-maven-plugin</artifactId>-->
|
||||
<!-- <version>0.8.8</version>-->
|
||||
<!-- <executions>-->
|
||||
<!-- <execution>-->
|
||||
<!-- <id></id>-->
|
||||
<!-- </execution>-->
|
||||
<!-- </executions>-->
|
||||
<!-- <executions>-->
|
||||
<!-- <execution>-->
|
||||
<!-- <id>prepare-agent</id>-->
|
||||
<!-- <phase>process-test-classes</phase>-->
|
||||
<!-- <goals>-->
|
||||
<!-- <goal>prepare-agent</goal>-->
|
||||
<!-- </goals>-->
|
||||
<!-- <configuration>-->
|
||||
<!-- <destFile>${build.directory}/jacoco-data.exec</destFile>-->
|
||||
<!-- </configuration>-->
|
||||
<!-- </execution>-->
|
||||
<!-- <execution>-->
|
||||
<!-- <id>report</id>-->
|
||||
<!-- <phase>verify</phase>-->
|
||||
<!-- <goals>-->
|
||||
<!-- <goal>report</goal>-->
|
||||
<!-- </goals>-->
|
||||
<!-- <configuration>-->
|
||||
<!-- <dataFile>${build.directory}/jacoco-data.exec</dataFile>-->
|
||||
<!-- <outputDirectory>${build.directory}/jacoco-reports</outputDirectory>-->
|
||||
<!-- </configuration>-->
|
||||
<!-- </execution>-->
|
||||
<!-- <execution>-->
|
||||
<!-- <id>jacoco-check</id>-->
|
||||
<!-- <phase>verify</phase>-->
|
||||
<!-- <goals>-->
|
||||
<!-- <goal>check</goal>-->
|
||||
<!-- </goals>-->
|
||||
<!-- <configuration>-->
|
||||
<!-- <rules>-->
|
||||
<!-- <rule>-->
|
||||
<!-- <element>BUNDLE</element>-->
|
||||
<!-- <limits>-->
|
||||
<!-- <limit>-->
|
||||
<!-- <counter>INSTRUCTION</counter>-->
|
||||
<!-- <value>COVEREDRATIO</value>-->
|
||||
<!-- <minimum>0.00</minimum>-->
|
||||
<!-- <maximum>1.00</maximum>-->
|
||||
<!-- </limit>-->
|
||||
<!-- </limits>-->
|
||||
<!-- </rule>-->
|
||||
<!-- </rules>-->
|
||||
<!-- </configuration>-->
|
||||
<!-- </execution>-->
|
||||
<!-- </executions>-->
|
||||
<!-- </plugin>-->
|
||||
|
||||
|
||||
<!-- <plugin>-->
|
||||
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
||||
<!-- <artifactId>maven-antrun-plugin</artifactId>-->
|
||||
<!-- <version>1.6</version>-->
|
||||
<!-- <executions>-->
|
||||
<!-- <execution>-->
|
||||
<!-- <phase>post-integration-test</phase>-->
|
||||
<!-- <goals>-->
|
||||
<!-- <goal>run</goal>-->
|
||||
<!-- </goals>-->
|
||||
<!-- <configuration>-->
|
||||
<!-- <target>-->
|
||||
<!-- <echo message="Generating NB Test Coverage Reports"/>-->
|
||||
<!-- <taskdef name="report" classname="org.jacoco.ant.ReportTask">-->
|
||||
<!-- <classpath-->
|
||||
<!-- path="${basedir}/target/jacoco-jars/org.jacoco.ant.jar"/>-->
|
||||
<!-- </taskdef>-->
|
||||
<!-- <mkdir dir="${basedir}/target/coverage-report"/>-->
|
||||
<!-- <report>-->
|
||||
<!-- <fileset dir="${project.basedir}/target">-->
|
||||
<!-- <include name="jacoco.exec"/>-->
|
||||
<!-- </fileset>-->
|
||||
<!-- <structure name="NB Coverage">-->
|
||||
<!-- <group name="jacoco-nb-all-modules">-->
|
||||
<!-- <classfiles>-->
|
||||
<!-- <fileset dir="${project.basedir}/target/classes">-->
|
||||
<!-- <include name="io/nosqlbench/**/*.class"/>-->
|
||||
<!-- </fileset>-->
|
||||
<!-- </classfiles>-->
|
||||
<!-- <sourcefiles encoding="UTF-8">-->
|
||||
<!-- <fileset dir="${project.basedir}/src/main/java"/>-->
|
||||
<!-- </sourcefiles>-->
|
||||
<!-- </group>-->
|
||||
<!-- </structure>-->
|
||||
<!-- <html destdir="${project.basedir}/target/coverage-report/html"/>-->
|
||||
<!-- <xml destfile="${project.basedir}/target/coverage-report/nb-coverage-report.xml"/>-->
|
||||
<!-- <csv destfile="${project.basedir}/target/coverage-report/nb-coverage-report.csv"/>-->
|
||||
<!-- </report>-->
|
||||
<!-- </target>-->
|
||||
<!-- </configuration>-->
|
||||
<!-- </execution>-->
|
||||
<!-- </executions>-->
|
||||
<!-- <dependencies>-->
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>org.jacoco</groupId>-->
|
||||
<!-- <artifactId>org.jacoco.ant</artifactId>-->
|
||||
<!-- <version>${jacoco.version}</version>-->
|
||||
<!-- </dependency>-->
|
||||
<!-- </dependencies>-->
|
||||
<!-- </plugin>-->
|
||||
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
|
Loading…
Reference in New Issue
Block a user