blob: f33945e08e8fe23cc6fd62e74c2ef69867467553 [file] [log] [blame]
# This workflow is just for checking whether modifications works for the Go client.
name: Go Client
on:
push:
branches:
- master
- 'rel/*'
- "new_*"
paths-ignore:
- 'docs/**'
pull_request:
branches:
- master
- 'rel/*'
- "new_*"
paths-ignore:
- 'docs/**'
# allow manually run the action:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
jobs:
unix:
strategy:
fail-fast: false
max-parallel: 20
matrix:
java: [ 11 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os}}
steps:
- uses: actions/checkout@v2
with:
token: ${{secrets.GITHUB_TOKEN}}
submodules: recursive
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2-
- name: Compile IoTDB Server
run: mvn -B package -Dmaven.test.skip=true -am -pl server
- name: Integration test
shell: bash
run: |
cd client-go && make e2e_test_for_parent_git_repo e2e_test_clean_for_parent_git_repo