Skip to content

Commit

Permalink
Adds verify to ci.yaml, skip exec to coverity.yaml to reflect mvn_01 … (
Browse files Browse the repository at this point in the history
#175)

* Adds verify to ci.yaml, skip exec to coverity.yaml to reflect mvn_01 standards

* Disable verify on ci.yaml, add a note
  • Loading branch information
StrongestNumber9 authored Feb 5, 2025
1 parent f9b90dd commit f1bd01f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ jobs:
java-version: 11
distribution: 'adopt'

# Integration tests gets stuck in Github while running verify; can't enable it here right now.
- name: Run CI
run: mvn --batch-mode -Pintegration clean package
3 changes: 1 addition & 2 deletions .github/workflows/coverity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,9 @@ jobs:
- name: Compile Coverity
run: |
${RUNNER_TEMP}/${{ env.COVERITY }}/bin/cov-build --dir ${RUNNER_TEMP}/cov-int mvn -B -Drevision=${{ env.RELEASE_VERSION }} -Dsha1= -Dchangelist= clean verify
${RUNNER_TEMP}/${{ env.COVERITY }}/bin/cov-build --dir ${RUNNER_TEMP}/cov-int mvn -B -Drevision=${{ env.RELEASE_VERSION }} -Dsha1= -Dchangelist= -Dmaven.test.skip.exec=true clean verify
cd ${RUNNER_TEMP} && tar czvf ${{ vars.COVERITY_PROJECT_URL_ID }}.tgz cov-int
- name: Wait for Coverity analysis slot
run: |
while true; do
Expand Down

0 comments on commit f1bd01f

Please sign in to comment.