Skip to content

Commit

Permalink
fix: fix test report paths
Browse files Browse the repository at this point in the history
  • Loading branch information
viv committed Jan 6, 2025
1 parent 9338302 commit f1ad952
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:
- name: Checkout Openfire
uses: actions/checkout@v4
with:
repository: surevine/openfire
repository: igniterealtime/Openfire
path: openfire

- name: Checkout Integration Tests
uses: actions/checkout@v4
with:
repository: surevine/openfire-integration-tests
path: integration-tests
path: openfire-integration-tests

- name: Initialize Integration Tests Submodules
working-directory: integration-tests
working-directory: openfire-integration-tests
run: |
git submodule update --init
Expand All @@ -52,12 +52,12 @@ jobs:
docker build -t openfire:latest .
- name: Run Integration Tests
working-directory: integration-tests
working-directory: openfire-integration-tests
run: ./mvnw -B verify

- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always() # Run even if tests fail
with:
junit_files: "target/failsafe-reports/*.xml"
junit_files: "openfire-integration-tests/target/failsafe-reports/*.xml"
check_name: "Integration Test Results"

0 comments on commit f1ad952

Please sign in to comment.