Merge branch 'ecchronos-3.0' into ecchronos-4.0 #681
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test report | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
env: | |
MAVEN_OPTS: -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 | |
jobs: | |
tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: "Unit tests" | |
test_suite: 'test jacoco:report' | |
python: 3.6 | |
java: 8 | |
- name: "Style check" | |
test_suite: 'compile com.mycila:license-maven-plugin:check pmd:pmd pmd:cpd pmd:check pmd:cpd-check javadoc:jar' | |
python: 3.6 | |
java: 8 | |
- name: "OSGi integration" | |
test_suite: 'install -P docker-integration-test,osgi-integration-tests -Dit.cassandra.version=3.0 -DskipUTs' | |
python: 3.6 | |
java: 8 | |
- name: "Standalone integration 3.0" | |
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=3.0 -DskipUTs' | |
python: 3.6 | |
java: 8 | |
- name: "Standalone integration 3.11" | |
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=3.11 -DskipUTs' | |
python: 3.6 | |
java: 8 | |
- name: "Standalone integration 4.0 (Java 8)" | |
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=4.0 -DskipUTs' | |
python: 3.6 | |
java: 8 | |
- name: "Standalone integration 4.0 (Java 11)" | |
test_suite: 'verify -P docker-integration-test,standalone-integration-tests -Dit.cassandra.version=4.0 -DskipUTs' | |
python: 3.6 | |
java: 11 | |
- name: "Python 2.7 integration (Cassandra 3.11, Java 8)" | |
test_suite: 'verify -P docker-integration-test,python-integration-tests -DskipUTs' | |
python: 2.7 | |
java: 8 | |
- name: "Python 3.6 integration (Cassandra 3.11, Java 8)" | |
test_suite: 'verify -P docker-integration-test,python-integration-tests -DskipUTs' | |
python: 3.6 | |
java: 8 | |
- name: "Python 3.6 integration (Cassandra 4.0, Java 11)" | |
test_suite: 'verify -P docker-integration-test,python-integration-tests -Dit.cassandra.version=4.0 -DskipUTs' | |
python: 3.6 | |
java: 11 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: build-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
build-${{ runner.os }}-maven- | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.X | |
if: startsWith(matrix.python, '3.') | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Set up Python 2.7 | |
if: matrix.python == 2.7 | |
run: | | |
sudo apt-get update | |
sudo apt-get install python-setuptools python-dev | |
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py | |
sudo python get-pip.py | |
- name: install dependencies | |
run: mvn install -DskipTests=true | |
- run: mvn $TEST_SUITE -B | |
env: | |
TEST_SUITE: ${{ matrix.test_suite }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: > | |
./rest/target/site/jacoco/jacoco.xml, | |
./core.osgi/target/site/jacoco/jacoco.xml, | |
./application/target/site/jacoco/jacoco.xml, | |
./osgi-integration/target/site/jacoco/jacoco.xml, | |
./core/target/site/jacoco/jacoco.xml, | |
./fm.impl/target/site/jacoco/jacoco.xml, | |
./connection/target/site/jacoco/jacoco.xml |