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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Cockroach DB v21 Support Test
name: Cockroach DB v22 Support Test
on:
push:
branches: [ master, eugene/* ]
Expand All @@ -12,7 +12,7 @@ jobs:
# so we are gonna to run the docker containers via the bash commandline
# services:
# postgres:
# image: cockroachdb/cockroach:v21.1.12
# image: cockroachdb/cockroach:v22.2.19
# env:
# POSTGRES_DATABASE: javacommons
# POSTGRES_USER: javacommons
Expand All @@ -30,15 +30,15 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
~/.gradle/caches
~/.gradle/wrapper
- name: Setup cockroachDB
run: |
sudo docker run -d --name=roach1 --hostname=roach1 -p 26257:26257 -p 8080:8080 cockroachdb/cockroach:v21.2.0 start-single-node --insecure && \
sudo docker run -d --name=roach1 --hostname=roach1 -p 26257:26257 -p 8080:8080 cockroachdb/cockroach:v22.2.19 start-single-node --insecure && \
sleep 5s
- name: Setup initial cockroach DB
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Run the build
run: ./gradlew build
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand All @@ -50,7 +50,7 @@ jobs:
verbose: true # optional (default = false)
fail_ci_if_error: false
- name: Archive binary files
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: binary-libs
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hazelcast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/local-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mongodb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mysql-5-7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mysql-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: (perf) Cockroach DB v21 Support Test
name: (perf) Cockroach DB v22 Support Test
on:
# -------------------------------------------------------------------------------------------------------------------------------
# Disabling perf test to ensure build time is < 4m
Expand Down Expand Up @@ -26,7 +26,7 @@ jobs:
# so we are gonna to run the docker containers via the bash commandline
# services:
# postgres:
# image: cockroachdb/cockroach:v21.1.12
# image: cockroachdb/cockroach:v22.2.19
# env:
# POSTGRES_DATABASE: javacommons
# POSTGRES_USER: javacommons
Expand All @@ -44,15 +44,15 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
~/.gradle/caches
~/.gradle/wrapper
- name: Setup cockroachDB
run: |
sudo docker run -d --name=roach1 --hostname=roach1 -p 26257:26257 -p 8080:8080 cockroachdb/cockroach:v21.2.0 start-single-node --insecure && \
sudo docker run -d --name=roach1 --hostname=roach1 -p 26257:26257 -p 8080:8080 cockroachdb/cockroach:v22.2.19 start-single-node --insecure && \
sleep 5s
- name: Setup initial cockroach DB
run: |
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: (perf) JSON Cockroach DB v21 Support Test
name: (perf) JSON Cockroach DB v22 Support Test
on:
# -------------------------------------------------------------------------------------------------------------------------------
# Disabling perf test to ensure build time is < 4m
Expand All @@ -21,7 +21,7 @@ jobs:
# so we are gonna to run the docker containers via the bash commandline
# services:
# postgres:
# image: cockroachdb/cockroach:v21.1.12
# image: cockroachdb/cockroach:v22.2.19
# env:
# POSTGRES_DATABASE: javacommons
# POSTGRES_USER: javacommons
Expand All @@ -39,15 +39,15 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
~/.gradle/caches
~/.gradle/wrapper
- name: Setup cockroachDB
run: |
sudo docker run -d --name=roach1 --hostname=roach1 -p 26257:26257 -p 8080:8080 cockroachdb/cockroach:v21.2.0 start-single-node --insecure && \
sudo docker run -d --name=roach1 --hostname=roach1 -p 26257:26257 -p 8080:8080 cockroachdb/cockroach:v22.2.19 start-single-node --insecure && \
sleep 5s
- name: Setup initial cockroach DB
run: |
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf_json_postgres-14-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf_local-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf_mongodb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf_mysql-8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf_postgres-14-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/postgres-14-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }}
path: |
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Run jacocoTestReport
run: ./gradlew jacocoTestReport
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: test-result-report
Expand Down
Loading