Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yaooqinn committed Mar 19, 2022
1 parent 733df9c commit 4e1fb38
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/dep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,40 +17,44 @@

name: Dependency

# This GitHub workflow checks style & dependency issues.

on:
pull_request:
branches:
- master
- branch-*
paths:
# dependency check happens only pom changes
- '**/pom.xml'

concurrency:
group: dep-${{ github.ref }}
cancel-in-progress: true

env:
MAVEN_OPTS: -Dorg.slf4j.simpleLogger.defaultLogLevel=error
MAVEN_OPTS: -Dorg.slf4j.simpleLogger.defaultLogLevel=warn

jobs:
linter:
dep:
name: Dependency check
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup JDK 8
- name: setup java
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: 8
cache: 'maven'
check-latest: false
- name: Maven install
- name: build
run: >-
build/mvn clean install -Pflink-provided,spark-provided
-Dmaven.javadoc.skip=true -Drat.skip=true -Dscalastyle.skip=true -Dspotless.check.skip -DskipTests
build/mvn clean install
-Pflink-provided,spark-provided
-Dmaven.javadoc.skip=true
-Drat.skip=true
-Dscalastyle.skip=true
-Dspotless.check.skip
-DskipTests
-pl kyuubi-ctl,kyuubi-server,kyuubi-assembly -am
- name: Check dependency list
run: build/dependency.sh
2 changes: 0 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

name: Style

# This GitHub workflow checks style & dependency issues.

on:
pull_request:
branches:
Expand Down

0 comments on commit 4e1fb38

Please sign in to comment.