Skip to content

Commit

Permalink
Add GHA.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Sep 13, 2023
1 parent 0bcf642 commit d69eaa7
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/java-benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Java client benchmarks

on:
workflow_dispatch:
inputs:
name:
required: false
type: string

run-name: ${{ inputs.name == '' && format('{0} @ {1}', github.ref_name, github.sha) || inputs.name }}

jobs:
build:
strategy:
matrix:
java:
- 11
- 17
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: ${{ matrix.java }}

# TODO: uncomment once benchmark implemented
# - name: Run benchmarks
# working-directory: java/jabushka
# run: ./gradlew -Pbenchmark :benchmark:jedis :benchmark:lettuce :benchmark:jabushka

- name: Upload test reports
if: always()
continue-on-error: true
uses: actions/upload-artifact@v2
with:
name: test-reports-${{ matrix.java }}
path: |
java/jabushka/benchmarks/build/**
57 changes: 57 additions & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: SQL Java CI

on:
pull_request:
push:
paths:
- "java/**"
- ".github/workflows/java.yml"

# Run only most latest job on a branch and cancel previous ones
concurrency:
group: ${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
build:
strategy:
# Run all jobs
fail-fast: false
matrix:
java:
- 11
- 17
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: ${{ matrix.java }}

- name: Install and run protoc (protobuf)
run: |
sudo apt update
sudo apt install protobuf-compiler
protoc -Iprotobuf=babushka-core/src/protobuf/ --java_out=java/jabushka/jabushka babushka-core/src/protobuf/*.proto
- name: Build rust part
working-directory: java
run: cargo build

- name: Build with Gradle
working-directory: java/jabushka
run: ./gradlew --continue build

- name: Upload test reports
if: always()
continue-on-error: true
uses: actions/upload-artifact@v2
with:
name: test-reports-${{ matrix.java }}
path: |
java/jabushka/jabushka/build/**
java/jabushka/integTest/build/**

0 comments on commit d69eaa7

Please sign in to comment.