Skip to content

Commit

Permalink
Remove quality job after new release process
Browse files Browse the repository at this point in the history
  • Loading branch information
aureamunoz committed Nov 5, 2024
1 parent e22f868 commit e794cbc
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,26 +85,4 @@ jobs:
distribution: temurin
cache: maven
- name: Compatibility Check
run: mvn install -DskipTests && mvn install revapi:check@check-compatibility -DskipTests -fae -pl \!bom

quality:
needs: [build]
if: github.event_name == 'push' && github.repository_owner == 'smallrye'
runs-on: ubuntu-latest
name: quality

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: maven

- name: sonar
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}
run: mvn -B install --file pom.xml -Pcoverage javadoc:javadoc sonar:sonar -Dsonar.login=$SONAR_TOKEN -Drevapi.skip=true
run: mvn install -DskipTests && mvn install revapi:check@check-compatibility -DskipTests -fae -pl \!bom

0 comments on commit e794cbc

Please sign in to comment.