Skip to content

Commit

Permalink
Implement load and flush (#221)
Browse files Browse the repository at this point in the history
* Implement load and flush

Signed-off-by: yhmo <[email protected]>

* Add for java doc

Signed-off-by: yhmo <[email protected]>
  • Loading branch information
yhmo authored Nov 16, 2021
1 parent 9338bf0 commit 61b4031
Show file tree
Hide file tree
Showing 61 changed files with 5,418 additions and 2,605 deletions.
18 changes: 18 additions & 0 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
pull_request_rules:
- name: Test passed for code changed
conditions:
- base=master
- "status-success=Java CI with Maven / build (pull_request)"
actions:
label:
add:
- ci-passed

- name: Remove ci-passed when code check failed
conditions:
- base=master
- "check-failure=Java CI with Maven / build (pull_request)"
actions:
label:
remove:
- ci-passed
26 changes: 26 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java CI with Maven

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
9 changes: 9 additions & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
filters:
".*":
reviewers:
- xiaofan-luan
- yhmo
approvers:
- xiaofan-luan
- yhmo

Loading

0 comments on commit 61b4031

Please sign in to comment.