Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 5 additions & 18 deletions .github/workflows/build-cov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,8 @@ on:
- 'main'

jobs:
prepare:
name: "Prepare"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install without tests
run: mvn -q -DskipTests install

license:
name: "License Check"
needs: prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
Expand All @@ -37,9 +22,11 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Check License Header
uses: apache/skywalking-eyes/header@main
uses: apache/skywalking-eyes/header@6e368ec14f31521edc7118374773e78d2d646aeb
- name: Install without tests
run: ./mvnw -q -DskipTests install
- name: Check Dependencies' License
uses: apache/skywalking-eyes/dependency@main
uses: apache/skywalking-eyes/dependency@6e368ec14f31521edc7118374773e78d2d646aeb
env:
MAVEN_OPTS: -Xmx1g
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -67,4 +54,4 @@ jobs:
path: |
**/target/site/jacoco/**
**/target/site/jacoco-aggregate/**
if-no-files-found: warn
if-no-files-found: warn
21 changes: 4 additions & 17 deletions .github/workflows/build-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,8 @@ on:
- 'bugfix-**'
- 'fix-**'
jobs:
prepare:
name: "Prepare"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install without tests
run: mvn -q -DskipTests install

license:
name: "License Check"
needs: prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
Expand All @@ -41,9 +26,11 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Check License Header
uses: apache/skywalking-eyes/header@main
uses: apache/skywalking-eyes/header@6e368ec14f31521edc7118374773e78d2d646aeb
- name: Install without tests
run: ./mvnw -q -DskipTests install
- name: Check Dependencies' License
uses: apache/skywalking-eyes/dependency@main
uses: apache/skywalking-eyes/dependency@6e368ec14f31521edc7118374773e78d2d646aeb
env:
MAVEN_OPTS: -Xmx1g
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading