 [](https://github.com/yaooqinn/kyuubi/pull/373)     [❨?❩](https://pullrequestbadge.com/?utm_medium=github&utm_source=yaooqinn&utm_campaign=badge_info)<!-- PR-BADGE: PLEASE DO NOT REMOVE THIS COMMENT --> <!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, please read our contributor guidelines: https://kyuubi.readthedocs.io/en/latest/community/contributions.html 2. If the PR is related to an issue in https://github.com/yaooqinn/kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'. 3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][KYUUBI #XXXX] Your PR title ...'. --> ### _Why are the changes needed?_ <!-- Please clarify why the changes are needed. For instance, 1. If you add a feature, you can talk about the use case of it. 2. If you fix a bug, you can clarify why it is a bug. --> close #372 ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/latest/tools/testing.html#running-tests) locally before make a pull request Closes #373 from pan3793/KYUUBI-372. a560827 [Cheng Pan] [KYUUBI #372] Auto upload unit-tests.log Authored-by: Cheng Pan <379377944@qq.com> Signed-off-by: Kent Yao <yao@apache.org>
75 lines
2.4 KiB
YAML
75 lines
2.4 KiB
YAML
name: Kyuubi
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: '1.8'
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.m2/repository/com
|
|
key: ${{ runner.os }}-maven-com-${{ hashFiles('**/pom.xml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-maven-com-
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.m2/repository/org
|
|
key: ${{ runner.os }}-maven-org-${{ hashFiles('**/pom.xml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-maven-org-
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.m2/repository/net
|
|
key: ${{ runner.os }}-maven-net-${{ hashFiles('**/pom.xml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-maven-net-
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.m2/repository/io
|
|
key: ${{ runner.os }}-maven-io-${{ hashFiles('**/pom.xml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-maven-io-
|
|
- name: Build with Maven
|
|
run: |
|
|
mvn clean install -Dmaven.javadoc.skip=true -B -V
|
|
bash <(curl -s https://codecov.io/bash)
|
|
- name: Collect unit tests log
|
|
run: |
|
|
mv kyuubi-common/target/unit-tests.log kyuubi-common_unit-tests.log
|
|
mv kyuubi-main/target/unit-tests.log kyuubi-main_unit-tests.log
|
|
- name: Upload unit tests log
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: unit-tests-log
|
|
path: |
|
|
kyuubi-common_unit-tests.log
|
|
kyuubi-main_unit-tests.log
|
|
retention-days: 30
|
|
# - name: Codecov kyuubi-common
|
|
# uses: codecov/codecov-action@v1
|
|
# with:
|
|
# file: ./kyuubi-common/target/codecov/jacoco.xml
|
|
# flags: kyuubi-common
|
|
# - name: Codecov kyuubi-ha
|
|
# uses: codecov/codecov-action@v1
|
|
# with:
|
|
# file: ./kyuubi-ha/target/codecov/jacoco.xml
|
|
# flags: kyuubi-ha
|
|
# - name: Codecov kyuubi-spark-sql-engine
|
|
# uses: codecov/codecov-action@v1
|
|
# with:
|
|
# file: ./externals/kyuubi-spark-sql-engine/target/codecov/jacoco.xml
|
|
# flags: kyuubi-spark-sql-engine
|
|
# - name: Codecov kyuubi-main
|
|
# uses: codecov/codecov-action@v1
|
|
# with:
|
|
# file: ./kyuubi-main/target/codecov/jacoco.xml
|
|
# flags: kyuubi-main
|