Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
farodin91 committed Aug 30, 2023
1 parent a8261d7 commit ad9c56e
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 20 deletions.
48 changes: 42 additions & 6 deletions .github/workflows/ci-backend-cql-dummy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ name: CI Backend CQL
on:
pull_request:
paths:
- 'docs/**'
- '.github/workflows/ci-docs.yml'
- '.github/ISSUE_TEMPLATE/**'
- 'requirements.txt'
- 'docs.Dockerfile'
- '*.md'
- 'docs/**'
- '.github/workflows/ci-docs.yml'
- '.github/ISSUE_TEMPLATE/**'
- 'requirements.txt'
- 'docs.Dockerfile'
- '*.md'

jobs:
tests:
Expand Down Expand Up @@ -82,5 +82,41 @@ jobs:
args: "-Pscylladb -Dtest=\"**/core/cql/*\""
name: scylladb-core
java: 17
- module: cql
args: "-Pcassandra4-byteordered -Dtest=\"**/diskstorage/cql/*\""
name: byteordered-diskstorage
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest=\"**/diskstorage/cql/*\""
name: murmur-diskstorage
java: 17
- module: cql
args: "-Pcassandra4-byteordered -Dtest=\"**/graphdb/cql/*\""
name: byteordered-graphdb
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest=\"**/graphdb/cql/*\""
name: murmur-graphdb
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest=\"**/hadoop/*\""
name: murmur-hadoop
java: 17
- module: cql
args: "-Pcassandra4-byteordered -Dtest=\"**/core/cql/*\""
name: byteordered-core
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest=\"**/core/cql/*\""
name: murmur-core
java: 17
- module: cql
args: "-Pcassandra4-murmur-ssl -Dtest=\"**/diskstorage/cql/CQLStoreTest.java\""
name: murmur-ssl
java: 17
- module: cql
args: "-Pcassandra4-murmur-client-auth -Dtest=\"**/diskstorage/cql/CQLStoreTest.java\""
name: murmur-client-auth
java: 17
steps:
- run: 'echo "No build required"'
64 changes: 50 additions & 14 deletions .github/workflows/ci-backend-cql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ name: CI Backend CQL
on:
pull_request:
paths-ignore:
- 'docs/**'
- '.github/workflows/ci-docs.yml'
- '.github/ISSUE_TEMPLATE/**'
- 'requirements.txt'
- 'docs.Dockerfile'
- '*.md'
- 'docs/**'
- '.github/workflows/ci-docs.yml'
- '.github/ISSUE_TEMPLATE/**'
- 'requirements.txt'
- 'docs.Dockerfile'
- '*.md'
push:
paths-ignore:
- 'docs/**'
- '.github/workflows/ci-docs.yml'
- '.github/ISSUE_TEMPLATE/**'
- 'requirements.txt'
- 'docs.Dockerfile'
- '*.md'
- 'docs/**'
- '.github/workflows/ci-docs.yml'
- '.github/ISSUE_TEMPLATE/**'
- 'requirements.txt'
- 'docs.Dockerfile'
- '*.md'
branches-ignore:
- 'dependabot/**'

Expand All @@ -51,7 +51,7 @@ jobs:
${{ runner.os }}-maven-
- uses: actions/setup-java@v3
with:
java-version: 17
java-version: 8
distribution: zulu
- run: mvn clean install --projects janusgraph-all -Pjanusgraph-cache -Dmaven.javadoc.skip=true ${{ env.BUILD_MAVEN_OPTS }}
- run: mvn verify --projects janusgraph-all -Pjanusgraph-cache ${{ env.VERIFY_MAVEN_OPTS }}
Expand Down Expand Up @@ -115,6 +115,42 @@ jobs:
args: "-Pscylladb -Dtest=\"**/core/cql/*\""
name: scylladb-core
java: 17
- module: cql
args: "-Pcassandra4-byteordered -Dtest=\"**/diskstorage/cql/*\""
name: byteordered-diskstorage
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest=\"**/diskstorage/cql/*\""
name: murmur-diskstorage
java: 17
- module: cql
args: "-Pcassandra4-byteordered -Dtest=\"**/graphdb/cql/*\""
name: byteordered-graphdb
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest=\"**/graphdb/cql/*\""
name: murmur-graphdb
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest=\"**/hadoop/*\""
name: murmur-hadoop
java: 17
- module: cql
args: "-Pcassandra4-byteordered -Dtest=\"**/core/cql/*\""
name: byteordered-core
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest=\"**/core/cql/*\""
name: murmur-core
java: 17
- module: cql
args: "-Pcassandra4-murmur-ssl -Dtest=\"**/diskstorage/cql/CQLStoreTest.java\""
name: murmur-ssl
java: 17
- module: cql
args: "-Pcassandra4-murmur-client-auth -Dtest=\"**/diskstorage/cql/CQLStoreTest.java\""
name: murmur-client-auth
java: 17
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -176,7 +212,7 @@ jobs:
${{ runner.os }}-maven-
- uses: actions/setup-java@v3
with:
java-version: 17
java-version: 8
distribution: zulu
- run: mvn clean install --projects janusgraph-${{ matrix.module }} ${{ env.BUILD_MAVEN_OPTS }} ${{ matrix.install-args }}
- run: mvn verify --projects janusgraph-${{ matrix.module }} -Dcassandra.docker.version='3.0.18' ${{ env.VERIFY_MAVEN_OPTS }} ${{ matrix.args }}
6 changes: 6 additions & 0 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ jobs:
- module: cql
args: "-Pcassandra3-murmur -Dtest.skip.tp=false -DskipTests=true"
java: 17
- module: cql
args: "-Pcassandra4-byteordered -Dtest.skip.tp=false -DskipTests=true"
java: 17
- module: cql
args: "-Pcassandra4-murmur -Dtest.skip.tp=false -DskipTests=true"
java: 17
- module: hbase
args: "-Dtest.skip.tp=false -DskipTests=true"
java: 17
Expand Down

0 comments on commit ad9c56e

Please sign in to comment.