Skip to content

Commit

Permalink
infra: disable pitest pitest-report-java-ast-visitor until checkstyle…
Browse files Browse the repository at this point in the history
  • Loading branch information
romani committed Aug 29, 2021
1 parent 87a8533 commit 5232fa9
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions .github/workflows/pitest.yml
Expand Up @@ -636,27 +636,28 @@ jobs:
path: staging
retention-days: 7

pitest-java-ast-visitor:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up JDK 8
uses: actions/setup-java@v1
with:
java-version: 8

- name: Generate pitest report
run: ./.ci/pitest.sh pitest-java-ast-visitor
- name: Stage results
if: failure() || github.ref == 'refs/heads/master'
run: |
mkdir staging && cp -r target/pit-reports/ staging
- name: Archive code coverage results
if: failure() || github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v2
with:
name: pitest-report-java-ast-visitor
path: staging
retention-days: 7
# until https://github.com/checkstyle/checkstyle/issues/10755
# pitest-java-ast-visitor:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# - name: Set up JDK 8
# uses: actions/setup-java@v1
# with:
# java-version: 8
#
# - name: Generate pitest report
# run: ./.ci/pitest.sh pitest-java-ast-visitor
# - name: Stage results
# if: failure() || github.ref == 'refs/heads/master'
# run: |
# mkdir staging && cp -r target/pit-reports/ staging
# - name: Archive code coverage results
# if: failure() || github.ref == 'refs/heads/master'
# uses: actions/upload-artifact@v2
# with:
# name: pitest-report-java-ast-visitor
# path: staging
# retention-days: 7

0 comments on commit 5232fa9

Please sign in to comment.