Skip to content

Commit

Permalink
Update regression tests workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Feb 21, 2024
1 parent 39e220e commit 3e96ea2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-pdfa-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up JDK 1.11
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 1.11
java-version: 11
distribution: 'temurin'
- name: Set up
run: mvn -B -DskipTests=true clean package --file pom.xml
- name: Run pdf/a and pdf/ua regression tests
run: java -Djdk.xml.xpathTotalOpLimit=0 -Djdk.xml.xpathExprOpLimit=0 -Djdk.xml.xpathExprGrpLimit=0 -cp "/home/runner/work/veraPDF-integration-tests/veraPDF-integration-tests/veraPDF-pdf-regression-tests/target"/'*' org.verapdf.pdf.regression.tests.PDFRegressionTestUtils

- name: Notify slack tests succeded
- name: Notify slack tests succeeded
if: success()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up JDK 1.11
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 1.11
java-version: 11
distribution: 'temurin'
- name: Set up
run: mvn -B -DskipTests=true clean package --file pom.xml
- name: Run wcag regression tests
run: java -Djdk.xml.xpathTotalOpLimit=0 -Djdk.xml.xpathExprOpLimit=0 -Djdk.xml.xpathExprGrpLimit=0 -cp "/home/runner/work/veraPDF-integration-tests/veraPDF-integration-tests/veraPDF-wcag-regression-tests/target"/'*' org.verapdf.wcag.regression.tests.WCAGRegressionTestUtils

- name: Notify slack tests succeded
- name: Notify slack tests succeeded
if: success()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
Expand Down

0 comments on commit 3e96ea2

Please sign in to comment.