This is an automated email from the ASF dual-hosted git repository. vgalaxies pushed a commit to branch vgalaxies/tmp in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
commit 094bb6807af885bc9745e2e7a5cb9a5d10b414ae Author: VGalaxies <[email protected]> AuthorDate: Thu Dec 26 21:50:42 2024 +0800 remove .github/workflows/commons-ci.yml --- .github/workflows/commons-ci.yml | 63 ---------------------------------------- 1 file changed, 63 deletions(-) diff --git a/.github/workflows/commons-ci.yml b/.github/workflows/commons-ci.yml deleted file mode 100644 index 5311ebeee..000000000 --- a/.github/workflows/commons-ci.yml +++ /dev/null @@ -1,63 +0,0 @@ -name: "HugeGraph-Commons CI" - -on: - workflow_dispatch: - push: - branches: - - master - - /^release-.*$/ - - /^test-.*$/ - pull_request: - -jobs: - build-commons: - runs-on: ubuntu-latest - env: - USE_STAGE: 'false' # Whether to include the stage repository. - - strategy: - fail-fast: false - matrix: - JAVA_VERSION: ['11'] - - steps: - - name: Install JDK ${{ matrix.JAVA_VERSION }} - uses: actions/setup-java@v3 - with: - java-version: ${{ matrix.JAVA_VERSION }} - distribution: 'zulu' - - - 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 - cp -vf .github/configs/settings.xml $HOME/.m2/settings.xml && cat $HOME/.m2/settings.xml - - - name: Install - run: | - mvn install -Dmaven.javadoc.skip=true -ntp -Dmaven.test.skip=true - - - name: Run common test - run: | - mvn test -pl hugegraph-commons/hugegraph-common -Dtest=UnitTestSuite -DskipCommonsTests=false - - - name: Run rpc test - run: | - mvn test -pl hugegraph-commons/hugegraph-rpc -Dtest=UnitTestSuite -DskipCommonsTests=false - - - name: Upload coverage to Codecov - uses: codecov/[email protected] - with: - file: target/jacoco.xml
