feat(client): support user defined OKHTTPClient configs #839
Workflow file for this run
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: "loader-ci" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- /^release-.*$/ | |
paths: | |
- hugegraph-loader/** | |
- hugegraph-dist/** | |
- .github/workflows/** | |
- pom.xml | |
pull_request: | |
paths: | |
- hugegraph-loader/** | |
- hugegraph-dist/** | |
- hugegraph-client/** | |
- .github/workflows/** | |
- pom.xml | |
jobs: | |
loader-ci: | |
runs-on: ubuntu-latest | |
env: | |
USE_STAGE: 'true' # Whether to include the stage repository. | |
TRAVIS_DIR: hugegraph-loader/assembly/travis | |
STATIC_DIR: hugegraph-loader/assembly/static | |
# TODO: replace it with the (latest - n) commit id (n >= 15) | |
COMMIT_ID: b52517c | |
DB_USER: root | |
DB_PASS: root | |
DB_DATABASE: load_test | |
steps: | |
- name: Install JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: use staged maven repo settings | |
if: ${{ env.USE_STAGE == 'true' }} | |
run: | | |
cp $HOME/.m2/settings.xml /tmp/settings.xml | |
mv -vf .github/configs/settings.xml $HOME/.m2/settings.xml | |
- name: Compile | |
run: | | |
mvn install -pl hugegraph-client,hugegraph-loader -am -Dmaven.javadoc.skip=true -DskipTests -ntp | |
- name: Prepare env and service | |
run: | | |
$TRAVIS_DIR/install-hadoop.sh | |
$TRAVIS_DIR/install-mysql.sh ${{ env.DB_DATABASE }} ${{ env.DB_PASS }} | |
$TRAVIS_DIR/install-hugegraph-from-source.sh $COMMIT_ID | |
- name: Run test | |
run: | | |
cd hugegraph-loader && ls | |
mvn test -P unit -ntp | |
mvn test -P file | |
mvn test -P hdfs | |
mvn test -P jdbc | |
mvn test -P kafka | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: target/jacoco.xml |